Plugin
oneko
cat follow mouse (real)
1
/*2
* FiveCord — a Discord client mod3
* Copyright (c) 2025 FiveCord4
* SPDX-License-Identifier: GPL-3.0-or-later5
*/6
7
import { Devs } from "@utils/constants";8
import definePlugin from "@utils/types";9
10
export 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 script15
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