NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name AgarDudu
// @namespace http://agardudu.esy.es/agar.html
// @version 0.2
// @description Agar Edited By Dudu
// @author Duduslugee
// @match http://agar.io/*
// @match https://agar.io/*
// @run-at document-start
// @grant GM_xmlhttpRequest
// ==/UserScript==
window.stop()
document.documentElement.innerHTML = null
GM_xmlhttpRequest({method: 'GET', url: 'http://agardudu.esy.es/agar.html',
onload: function(r) {
document.open()
document.write(r.responseText)
document.close()
}
})