1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-25 08:46:25 +00:00
Vencord/src/plugins/STFU.ts

10 lines
280 B
TypeScript
Raw Normal View History

2022-08-29 20:05:22 +00:00
import definePlugin from "../utils/types";
export default definePlugin({
name: "STFU",
description: "Disabled the fat warning in the DevTools console",
author: "Vendicated",
start() {
window.DiscordNative.window.setDevtoolsCallbacks(null, null);
}
});