Greasy Fork is available in English.

Ward.YT (NSF CLAN)

Official Javascript client from 2015/2016 before emsscripten.

نووسەر
WARD YT
Daily installs
0
Total installs
407
Ratings
0 0 0
وەشان
v72.1
Created
2022-11-14
Updated
2022-12-30
مۆڵەت
نییە
Applies to

// ==UserScript==
// @name Ward.YT (NSF CLAN)
// @namespace real agar.io from 2015.
// @version v72.1
// @description Official Javascript client from 2015/2016 before emsscripten.
// @author © agarbot.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();
}
});