Greasy Fork 支持简体中文。

sexy cat push up 4k at bottom right

your a bitch

// ==UserScript==
// @name         sexy cat push up 4k at bottom right
// @namespace    Custom.Script
// @version      1.0
// @description  your a bitch
// @author       fartpooper2565
// @match        *://*/*
// @grant        none
// @noframes
// @license      GPL-3.0-or-later
// ==/UserScript==

(function() {
    'use strict';

    var catGif = document.createElement('img');
    catGif.src = "https://media1.tenor.com/m/HBpfYm9_MVoAAAAC/push-up-cat.gif";
    catGif.style.position = 'fixed';
    catGif.style.bottom = '0';
    catGif.style.right = '0';
    catGif.style.zIndex = '999999999';
    catGif.style.width = '150px'; // Adjust the size as needed
    catGif.style.cursor = 'pointer';

    catGif.onclick = function() {
        catGif.remove();
    };

    document.body.appendChild(catGif);
})();