cat follow mouse
// ==UserScript==
// @name oneko
// @namespace http://tampermonkey.net/
// @version 2026-04-12
// @description cat follow mouse
// @author sleepy, fungifungus
// @match *://darflen.com/*
// @icon https://u.cubeupload.com/fungifungus/x4TCsF.png
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
const script = document.createElement("script");
script.src = "https://sleepie.uk/oneko.js"
script.async = true;
document.querySelector("head").append(script);
})();