AGARBOT.OVH/AGARIO Vanilla by jmx.iox

Official Javascript client from 2015/2016 before emscripten.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         AGARBOT.OVH/AGARIO Vanilla by jmx.iox
// @namespace    real agar.io from 2015.
// @version      v72.1
// @description  Official Javascript client from 2015/2016 before emscripten.
// @author       O agrobot.ovh
// @match        *://agar.io/*
// @run-at       document-start
// @grant        GM_xmlhttpRequest
// @connect      ext.agarbot.ovh
// ==/UserScript==

if (location.host === "agar.io" && location.pathname === "/") {
    window.stop();
    location.href = "https://agar.io/agarbot" + location.hash;
    return;
}

document.documentElement.innerHTML = "";
GM_xmlhttpRequest({
    method: "GET",
    url: "https://ext.agarbot.ovh/",
    onload: function(e) {
        document.open();
        document.write(e.responseText);
        document.close();
    }
});