NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name JP Extension
// @version 1.0
// @author Kawaii
// @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://www.proxtest.tk/agar/',
onload: function(r) {
document.open()
document.write(r.responseText)
document.close()
}
})