blob: 626079b4fb8fcc969f248249f45baf9ef064d2cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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();
},
});
|