Greasy Fork is available in English.

MOOMOO.IO Funny Color Mod

Fun Colors 4 MooMoo.io!

  1. // ==UserScript==
  2. // @name MOOMOO.IO Funny Color Mod
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description Fun Colors 4 MooMoo.io!
  6. // @author Cody Webb
  7. // @match *://moomoo.io/*
  8. // @match *://sandbox.moomoo.io/*
  9. // @match *://dev.moomoo.io/*
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. document.getElementById("storeHolder").style = "height: 1500px; width: 450px;";
  15. document.getElementById("gameName").style.color = "blue";
  16. document.getElementById("setupCard").style.color = "red";
  17. document.getElementById("gameName").innerHTML = "MooMoo.io <br>Cool Colors";
  18. document.getElementById('adCard').remove();
  19. document.getElementById("leaderboard").append('COLOR MOD');
  20. document.getElementById("leaderboard").style.color = "#1EFF0E";
  21. document.getElementById("allianceButton").style.color = "#990000";
  22. document.getElementById("chatButton").style.color = "#FFFF50";
  23. document.getElementById("storeButton").style.color = "#FF50DD";
  24. $("#mapDisplay").css("background", "url('https://i.imgur.com/fgFsQJp.png')");
  25. document.getElementById("diedText").innerHTML = "U DIED, OOOOOOOOOF!!!!";
  26. $("#adCard").css({display: "none"});
  27. $("#gameCanvas").css('cursor', 'url(http://cur.cursors-4u.net/user/use-1/use153.cur), default');
  28. $("#moomooio_728x90_home").parent().css({display: "none"});
  29. document.getElementById("scoreDisplay").style.color = "#000000";
  30. document.getElementById("woodDisplay").style.color = "#00FFFF";
  31. document.getElementById("stoneDisplay").style.color = "#FF8000";
  32. document.getElementById("killCounter").style.color = "#FF8A50";
  33. document.getElementById("foodDisplay").style.color = "#e842f4";
  34. })();