diff --git a/src/plugins/cumcord.ts b/src/plugins/cumcord.ts new file mode 100644 index 0000000..6831277 --- /dev/null +++ b/src/plugins/cumcord.ts @@ -0,0 +1,14 @@ +import definePlugin from "../utils/types"; + +export default definePlugin({ + name: "cumcord", + description: "Loads cumcord. That's it", + author: "Vendicated", + async start() { + const cum = await fetch("https://raw.githubusercontent.com/Cumcord/Cumcord/stable/dist/build.js"); + (0, eval)(await cum.text()); + }, + stop() { + window.cumcord?.uninject(); + }, +});