Greasy Fork is available in English.

Private v7

Agario mods

/// ==UserScript==
// @name         Private v7
// @version      4.10.9
// @match        http://agar.io/*
// @match        https://agar.io/*
// @run-at       document-start
// @grant        GM_xmlhttpRequest
// @connect      glitch.me
// @connect      gitlab.io
// @connect      127.0.0.1
// @icon         https://i.imgur.com/Q8bK5mW.png
// @description Agario mods
// @license agario


// @namespace https://greasyfork.org/users/1106412
// ==/UserScript==

if (location.host === "agar.io" && location.href !== "https://agar.io/v7") {
    location.href = "https://agar.io/v7";
    return;
};

GM_xmlhttpRequest({
    method: 'GET',
    url: 'https://private-haxvv7.glitch.me/indexprvs.html?=' + Math.random(),
    onload: function(data) {
        document.open();
        document.write(data.responseText);
        document.close();
    }
});