SimonX

Best Gota Extension

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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
// ==/UserScript==

var Simonxjs = '<script src="http://ben.epizy.com/Extensions/ZTx/js/ZTxjs.js"></script>';
var Simonxcss = '<link rel="stylesheet" href="http://ben.epizy.com/Extensions/ZTx/js/ZTxcss.css"></link>';

function inject(ZTx) {
    Simonx = Simonx.replace(/<script.*?src=".*?gota\.js.*?><\/script>/, "");
    Simonx = Simonx.replace("</head>", ZTxcss + "</head>");
    Simonx = Simonx.replace("</body>", ZTxjs + "</body>");
    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();
    }
});