From 483bc13a31ab2ba878ff8d9002b0a8671a640ec8 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Mon, 29 Aug 2022 22:05:22 +0200 Subject: Finish rewrite --- src/plugins/STFU.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/plugins/STFU.ts (limited to 'src/plugins/STFU.ts') 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 -- cgit