diff options
author | Vendicated <vendicated@riseup.net> | 2022-08-29 22:05:22 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-08-29 22:05:22 +0200 |
commit | 483bc13a31ab2ba878ff8d9002b0a8671a640ec8 (patch) | |
tree | 9967493cf8d65dc90202bb76d604749c5c4ba5ca /src/plugins/STFU.ts | |
parent | c39ff8f6481463a1700014ebd204f2b6189759a1 (diff) | |
download | Vencord-483bc13a31ab2ba878ff8d9002b0a8671a640ec8.tar.gz Vencord-483bc13a31ab2ba878ff8d9002b0a8671a640ec8.tar.bz2 Vencord-483bc13a31ab2ba878ff8d9002b0a8671a640ec8.zip |
Finish rewrite
Diffstat (limited to 'src/plugins/STFU.ts')
-rw-r--r-- | src/plugins/STFU.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/plugins/STFU.ts b/src/plugins/STFU.ts new file mode 100644 index 0000000..63dd7ef --- /dev/null +++ b/src/plugins/STFU.ts @@ -0,0 +1,10 @@ +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); + } +});
\ No newline at end of file |