// ==UserScript== // @name Gota.io Optimiser // @namespace https://gota.io/web/* // @version 0.2 // @description Tidies up Gota... a little bit. // @author AlexHGaming // @match https://gota.io/web/ // @match https://gota.io/web-legacy/ // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Remove macro tab in settings document.getElementsByClassName(`options-container`)[0].id = "options"; var str = String(document.getElementById("options").innerHTML); document.getElementById("options").innerHTML = str.slice(0, 4520); // Hide and change things document.getElementsByClassName(`main-bottom-links`)[0].id = "adv"; document.getElementsByClassName(`main-rb-title`)[0].id = "proftxt"; document.getElementsByClassName(`main-rb-title`)[0].className = "title-text"; document.getElementsByClassName(`main-version`)[0].id = "version"; document.getElementsByClassName(`current-status`)[0].id = "status"; document.getElementsByClassName(`options-container`)[0].id = "options"; document.getElementById(`main-rb`).style = `display: none`; document.getElementById(`adv`).style = `display: none`; document.getElementById(`status`).style = `display: none`; document.getElementById(`proftxt`).innerHTML = `Account and Macros`; document.getElementById(`proftxt`).innerHTML += `
`; // Insert macro tab to home document.getElementById(`main-left`).innerHTML += `
Eject Mass
Split
Double Split (4x)
Triple Split (8x)
Quad Split (16x)
Hexa Split (64x)
Freeze Mouse
`; })();