您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Highlight water less than 100 and crows in plants
// ==UserScript== // @name PVU Water and Crow Highlighter // @namespace http://tampermonkey.net/ // @version 0.5 // @description Highlight water less than 100 and crows in plants // @author You // @match https://marketplace.plantvsundead.com/* // @icon https://plantvsundead.com/assets/img/logo-2.png // @grant none // ==/UserScript== (function() { window.addEventListener("load", function () { setInterval(modifyText, 200); }); })(); function modifyText() { document.getElementsByClassName("plant-attr-number").forEach(x => { if(x.firstElementChild.className == "small" || x.style.background == "red") { if(x.firstElementChild.innerText < 100){ x.firstElementChild.classList.remove("small"); x.firstElementChild.style.fontSize = "20px"; x.style.background = "red"; } else{ x.firstElementChild.classList.add("small"); x.style.background = "green"; } } }); document.getElementsByClassName("tw-absolute crow-icon").forEach(x => { if(x.style.display != "none") { x.style.width = "100px"; x.style.background = "red"; }}); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址