mirror of
https://github.com/Equicord/Equicord.git
synced 2025-02-18 22:28:51 -05:00
10 lines
280 B
TypeScript
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);
|
||
|
}
|
||
|
});
|