NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name gaia override icon blocker // @namespace kittyfluff // @version 0.1 // @match *.gaiaonline.com/* // ==/UserScript== var oIcons = document.getElementsByClassName("override-icon"); for (var item = 0; item < oIcons.length; item++) { if (oIcons[item].title === "Enigma Institute") { oIcons[item].setAttribute("style", "display: none !important"); break; } }