您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Changes white text to transparent while keeping other colors the same.
当前为
// ==UserScript== // @name Okoun - Spoiler Fix // @namespace http://your-namespace.com // @version 1.0 // @description Changes white text to transparent while keeping other colors the same. // @match https://www.okoun.cz/* // @icon https://opu.peklo.biz/p/23/07/24/1690208260-9b0c4.png // ==/UserScript== (function() { const elements = document.querySelectorAll('*'); for (let i = 0; i < elements.length; i++) { const color = window.getComputedStyle(elements[i]).color; if (color === 'rgb(255, 255, 255)' || color === 'white') { elements[i].style.color = 'transparent'; } } })();