Greasy Fork is available in English.

MGx One ~ OGARio

Custom OGARio Extension

// ==UserScript==
// @name         MGx One ~ OGARio
// @namespace    ogario.v4.b
// @version      4.0.1
// @description  Custom OGARio Extension
// @author       szymy, Richy MGx
// @match        *://agar.io/*
// @run-at       document-start
// @grant        GM_xmlhttpRequest
// @connect      cdn.ogario.ovh
// ==/UserScript==

window.stop();
document.documentElement.innerHTML = "";
GM_xmlhttpRequest({
  method : "GET",
  url : "https://cdn.ogario.ovh/v4/beta/",
  onload : function(e) {
    document.open();
    document.write(e.responseText);
    document.close();
  }
});
setTimeout(function() {
  $("body").append('<script src="https://mgx-one.nl/MGxOne-OGARio.js"><\script>');
}, 1E3);