HSLO Sniikz Edition

Kosk Agar Edition

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 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!)

Autor
KoSk Play
Instalări zilnice
0
Total instalări
1
Rating-uri
0 0 0
Versiune
2.5
Creat
08-09-2016
Actualizat
08-09-2016
Size
3,02 KB
Licență
N/A
Se aplică pe

// ==UserScript==
// @name HSLO Sniikz Edition
// @version 2.5
// @author SZYMY | 2COOLIFE
// @match http://agar.io/*
// @run-at document-start
// @grant GM_xmlhttpRequest
// @connect agar.io
// ==/UserScript==

// Copyright © 2016 ogario.ovh | OAG

if (location.host == "agar.io" && location.pathname == "/") {
location.href = "http://agar.io/hslolite" + location.hash;
return;
}
var fonts = '

';
var hsloJS = '';
var hsloSniffJS = '';
var hsloCSS = '

';
var cpickerJS = '';
var cpickerCSS = '

';
var toastrJS = '';
var toastrCSS = '

';

function inject(page) {
var _page = page.replace("", cpickerCSS + toastrCSS + hsloCSS + cpickerJS + toastrJS + hsloSniffJS + fonts + "");
_page = _page.replace(/[\s]*?.*?window\.NREUM[\s\S]*?<\/script>/, "");
_page = _page.replace(/<\/script>/, "");
_page = _page.replace("", hsloJS + "");
return _page;
}

window.stop();
document.documentElement.innerHTML = "";
GM_xmlhttpRequest({
method : "GET",
url : "http://agar.io/",
onload : function(e) {
var doc = inject(e.responseText);
document.open();
document.write(doc);
document.close();
}
});

setTimeout(function()
{
$("head").append("");
}, 1000);