Vencord/src/plugins/STFU.ts
2022-08-29 22:05:22 +02:00

10 lines
280 B
TypeScript

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);
}
});