This commit is contained in:
Vendicated 2022-09-07 15:22:56 +02:00
parent 83cdd86926
commit edbe8dbcec
No known key found for this signature in database
GPG key ID: EC781ADFB93EFFA3

14
src/plugins/cumcord.ts Normal file
View file

@ -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();
},
});