您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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); } })();