10 cats going down on each other gang bang

your a bitch

// ==UserScript==
// @name         10 cats going down on each other gang bang
// @namespace    Custom.Script
// @version      1.4
// @description  your a bitch
// @author       fartpooper2565
// @match        *://*/*
// @grant        none
// @noframes
// @license      GPL-3.0-or-later
// @icon            https://media1.tenor.com/m/HBpfYm9_MVoAAAAC/push-up-cat.gif
// ==/UserScript==

(function() {
    'use strict';

    var catdupe = 10;
    var startBottom = 0;
    var offset = 45;

    for (var i = 0; i < catdupe; i++) {
        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 = startBottom + (i * offset) + 'px';
        catGif.style.right = '0';
        catGif.style.zIndex = '999999999';
        catGif.style.width = '150px';
        catGif.style.opacity = '0.5';
        catGif.style.cursor = 'pointer';

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

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