AGARIO Vanilla (@ya6h_)

2015/2016

Автор
Marce Rodri
Инсталации дневно
13
Инсталации общо
487
Рейтинг
0 0 0
Версия
v3.0
Създаден
19.10.2024
Обновен
19.10.2024
Размер
960 Байта
Лиценз
Няма
Работи на

// ==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();

}

});