Plugin

oneko

cat follow mouse (real)

Fun Appearance
index.ts
Download

Source

src/plugins/oneko/index.ts
1/*
2 * FiveCord — a Discord client mod
3 * Copyright (c) 2025 FiveCord
4 * SPDX-License-Identifier: GPL-3.0-or-later
5 */
6
7import { Devs } from "@utils/constants";
8import definePlugin from "@utils/types";
9
10export default definePlugin({
11 name: "oneko",
12 description: "cat follow mouse (real)",
13 tags: ["Fun", "Appearance"],
14 // Listing adryd here because this literally just evals her script
15 authors: [Devs.Ven, Devs.adryd],
16
17 start() {
18 fetch("https:class="ts-cmt">//raw.githubusercontent.com/adryd325/oneko.js/c4ee66353b11a44e4a5b7e914a81f8d33111555e/oneko.js")
19 .then(x => x.text())
20 .then(s => s.replace("./oneko.gif", "https:class="ts-cmt">//raw.githubusercontent.com/adryd325/oneko.js/14bab15a755d0e35cd4ae19c931d96d306f99f42/oneko.gif")
21 .replace("(isReducedMotion)", "(false)"))
22 .then(eval);
23 },
24
25 stop() {
26 document.getElementById("oneko")?.remove();
27 }
28});
29