SimonX

Best Gota Extension

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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();
    }
});