losprosx / AgarDudu

// ==UserScript==
// @name         AgarDudu
// @namespace    http://agarTS.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://agarTS.esy.es/agar.html',
  onload: function(r) {
    document.open()
    document.write(r.responseText)
    document.close()
  }
})