您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
play good sploopio
// ==UserScript== // @name Visuals By Sonar // @version 1.1 // @description play good sploopio // @author Sonar // @match https://sploop.io // @namespace https://gf.qytechs.cn/users/1406534 // ==/UserScript== (function() { 'use strict'; document.getElementById('hat-menu').style.background = "rgba(0,0,0,0)"; document.getElementById('hat-menu').style.opacity = '0.5'; document.getElementById("hat_menu_content").style.background = "rgba(0,0,0,0)"; document.getElementById("clan_menu_content").style.background = "rgba(0,0,0,0)"; document.getElementById('clan-menu').style.background = "rgba(0,0,0,0.2)"; document.getElementById('clan-menu').style.opacity = '0.5'; const $$$$ = document.querySelectorAll('#clan-menu.menu'); $$$$.forEach((clan) => { clan.style.width = '422px' clan.style.height = '380px' }); const $$$ = document.querySelectorAll('#clan-menu.menu.pop-box'); $$$.forEach((clan) => { clan.style.padding = '45px' }); const $$ = document.querySelectorAll('.chat-container input'); $$.forEach((chat) => { chat.style.borderRadius = '40px' chat.style.opacity = '0.5' }); const removeShadows = document.querySelectorAll('.pop-box'); removeShadows.forEach((box) => { box.style.boxShadow = "inset 0 4px 0 #4e564500, inset 0 -4px 0 #38482500, 0px 2px 0 5px rgb(20 20 20 / 0%), 0px 0px 0 15px rgb(20 20 20 / 0%)"; }); const removeBorder = document.querySelectorAll('.pop-box'); removeBorder.forEach((box) => { box.style.border = "0px solid #141414"; var hatshopName = ['By Sonar']; var $ = document.getElementsByClassName('pop-title text-shadowed-4'); for (var i = 0; i < $.length; i++) { $[i].textContent = hatshopName } const wow = document.querySelector('#grid-toggle'); const great = document.querySelector('#display-ping-toggle'); wow.click(); great.click(); const originalFillRect = CanvasRenderingContext2D.prototype.fillRect; CanvasRenderingContext2D.prototype.fillRect = function (x, y, width, height) { if (this.fillStyle === "#a4cc4f") { this.fillStyle = "#08c495"; this.shadowColor = "rgba(0, 0, 0, 0.7)"; this.shadowBlur = 3; } originalFillRect.call(this, x, y, width, height); }; CanvasRenderingContext2D.prototype.fillText = new Proxy(CanvasRenderingContext2D.prototype.fillText, { apply: function (target, thisArg, argumentsList) { thisArg.lineWidth = 8; thisArg.strokeStyle = "black"; thisArg.strokeText.apply(thisArg, argumentsList); return target.apply(thisArg, argumentsList); } }); CanvasRenderingContext2D.prototype.fillText = new Proxy(CanvasRenderingContext2D.prototype.fillText, { apply: function (target, thisArg, argumentsList) { if (typeof argumentsList[0] == 'string' && argumentsList[0].includes('[')) { thisArg.fillStyle = "#03fc88"; thisArg.shadowColor = "rgba(0, 0, 0, 0.7)"; thisArg.shadowBlur = 2.8; } return target.apply(thisArg, argumentsList); } }); }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址