您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
cyrex i amde out of your fisher emoji form dc so yeah
// ==UserScript== // @name fisher crosshair // @namespace http://tampermonkey.net/ // @version 2024-03-30 // @description cyrex i amde out of your fisher emoji form dc so yeah // @author TEXTURESHEEP // @match http://*/* // @icon https://upload.wikimedia.org/wikipedia/commons/3/3e/Blox.pl_logo.png // @grant none // ==/UserScript== (function() { 'use strict'; })(); function myFunction() { const myCrosshair = document.querySelector("#root > div.WholeAppWrapper > div > div.CrossHair") if (myCrosshair) { myCrosshair.textContent = '🎣'; } const annoyingIcons = document.querySelector("#root > div.WholeAppWrapper > div > div.BottomLeftIcons"); if (annoyingIcons) { annoyingIcons.style.display = "none"; annoyingIcons.style.visibility = 'hidden'; } const annoyingIcons2 = document.querySelector("#root > div.WholeAppWrapper > div > div.TopRightElements") if (annoyingIcons2) { annoyingIcons2.style.display = "none"; annoyingIcons2.style.visibility = 'hidden'; } } setInterval(myFunction, 1000) const cpsCounter = document.querySelector("body > div:nth-child(10)") if (cpsCounter) { cpsCounter.style.fontSize = '40px'; }