diff options
author | Vendicated <vendicated@riseup.net> | 2022-09-07 15:22:56 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-09-07 15:22:56 +0200 |
commit | edbe8dbceccbb912c7bf0c7bb5af824361173352 (patch) | |
tree | 5bf34579ebef425633b30216c790dcf15cc5adb3 | |
parent | 83cdd869269a3d954a44730cdc2a0cdc71818049 (diff) | |
download | Vencord-edbe8dbceccbb912c7bf0c7bb5af824361173352.tar.gz Vencord-edbe8dbceccbb912c7bf0c7bb5af824361173352.tar.bz2 Vencord-edbe8dbceccbb912c7bf0c7bb5af824361173352.zip |
cummies
-rw-r--r-- | src/plugins/cumcord.ts | 14 |
1 files changed, 14 insertions, 0 deletions
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(); + }, +}); |