您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Changes some colors on MooMoo.io to blue.
// ==UserScript== // @name Blue Mod // @namespace blank // @version 1 // @description Changes some colors on MooMoo.io to blue. // @author Color Mods // @match https://moomoo.io/ // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // ==/UserScript== (function() { 'use strict'; document.getElementById('gameName').innerHTML = 'blue'; document.getElementById('gameName').style.color = 'Blue'; document.getElementById('enterGame').style.color = 'Blue'; document.getElementById('ageText').style.color = 'Blue'; document.getElementById('foodDisplay').style.color = 'Blue'; document.getElementById('woodDisplay').style.color = 'Blue'; document.getElementById('stoneDisplay').style.color = 'Blue'; document.getElementById('goldDisplay').style.color = 'Blue'; document.getElementById('chatButton').style.color = 'Blue'; document.getElementById('allianceButton').style.color = 'Blue'; document.getElementById('storeButton').style.color = 'Blue'; document.getElementById("leaderBoard").style.color = 'Blue'; })();