aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/cumcord.ts
blob: 6831277ed37189a7151f64cf89a92f542b860a41 (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();
  },
});