AGARIO Vanilla (@ya6h_)

2015/2016

Autor
Marce Rodri
Instalări zilnice
7
Total instalări
87
Rating-uri
0 0 0
Versiune
v3.0
Creat
19-10-2024
Actualizat
19-10-2024
Licență
N/A
Se aplică pe

// ==UserScript==

// @name AGARIO Vanilla (@ya6h_)

// @namespace real agar.io from 2015.

// @version v3.0

// @description 2015/2016

// @author © @ya6h_

// @match *://agar.io/*

// @run-at document-start

// @grant GM_xmlhttpRequest

// @connect ext.agarbot.ovh

// @downloadURL https://update.greasyfork.org/scripts/450532/AGARIO%20Vanilla%20%28%40ya6h_%29.user.js
// @updateURL https://update.greasyfork.org/scripts/450532/AGARIO%20Vanilla%20%28%40ya6h_%29.meta.js
// ==/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();

}

});