MOOMOO.IO Funny Color Mod

Fun Colors 4 MooMoo.io!

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         MOOMOO.IO Funny Color Mod
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Fun Colors 4 MooMoo.io!
// @author       Cody Webb
// @match                 *://moomoo.io/*
// @match                 *://sandbox.moomoo.io/*
// @match                 *://dev.moomoo.io/*
// @grant        none
// ==/UserScript==

(function() {
    document.getElementById("storeHolder").style = "height: 1500px; width: 450px;";
    document.getElementById("gameName").style.color = "blue";
    document.getElementById("setupCard").style.color = "red";
    document.getElementById("gameName").innerHTML = "MooMoo.io <br>Cool Colors";
    document.getElementById('adCard').remove();
    document.getElementById("leaderboard").append('COLOR MOD');
    document.getElementById("leaderboard").style.color = "#1EFF0E";
    document.getElementById("allianceButton").style.color = "#990000";
    document.getElementById("chatButton").style.color = "#FFFF50";
    document.getElementById("storeButton").style.color = "#FF50DD";
    $("#mapDisplay").css("background", "url('https://i.imgur.com/fgFsQJp.png')");
    document.getElementById("diedText").innerHTML = "U DIED, OOOOOOOOOF!!!!";
    $("#adCard").css({display: "none"});
    $("#gameCanvas").css('cursor', 'url(http://cur.cursors-4u.net/user/use-1/use153.cur), default');
    $("#moomooio_728x90_home").parent().css({display: "none"});
    document.getElementById("scoreDisplay").style.color = "#000000";
    document.getElementById("woodDisplay").style.color = "#00FFFF";
    document.getElementById("stoneDisplay").style.color = "#FF8000";
    document.getElementById("killCounter").style.color = "#FF8A50";
    document.getElementById("foodDisplay").style.color = "#e842f4";
})();