// ==UserScript== // @name SimonX // @namespace SimonX // @description Best Gota Extension // @author Simon Chanderlon // @version 1.0 // @match http://gota.io/web/* // @run-at document-start // @grant GM_xmlhttpRequest // @connect gota.io // @downloadURL https://update.greasyfork.cloud/scripts/28617/SimonX.user.js // @updateURL https://update.greasyfork.cloud/scripts/28617/SimonX.meta.js // ==/UserScript== var Simonxjs = ''; var Simonxcss = ''; function inject(ZTx) { Simonx = Simonx.replace(/<\/script>/, ""); Simonx = Simonx.replace("", ZTxcss + ""); Simonx = Simonx.replace("", ZTxjs + ""); return Simonx; } window.stop(); document.documentElement.innerHTML = ""; GM_xmlhttpRequest({ method : "GET", url : "http://gota.io/web/", onload : function(e) { var doc = inject(e.responseText); document.open(); document.create(doc); document.close(); } });