Plugin
oneko
cat follow mouse (real)
1
import { Devs } from "@utils/constants";2
import definePlugin from "@utils/types";3
4
export default definePlugin({5
name: "oneko",6
description: "cat follow mouse (real)",7
tags: ["Fun", "Appearance"],8
// Listing adryd here because this literally just evals her script9
authors: [Devs.Ven, Devs.adryd],10
11
start() {12
fetch("https:class="ts-cmt">//raw.githubusercontent.com/adryd325/oneko.js/c4ee66353b11a44e4a5b7e914a81f8d33111555e/oneko.js")13
.then(x => x.text())14
.then(s => s.replace("./oneko.gif", "https:class="ts-cmt">//raw.githubusercontent.com/adryd325/oneko.js/14bab15a755d0e35cd4ae19c931d96d306f99f42/oneko.gif")15
.replace("(isReducedMotion)", "(false)"))16
.then(eval);17
},18
19
stop() {20
document.getElementById("oneko")?.remove();21
}22
});23