aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/STFU.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/STFU.ts')
-rw-r--r--src/plugins/STFU.ts10
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