Psycheee

Untitled

Jun 12th, 2019
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. // ==UserScript==
  2. // @name MGx One
  3. // @namespace MGxOne
  4. // @version 1.7
  5. // @description Custom OGARio Extension
  6. // @author varedz, szymy, Richy MGx
  7. // @match ://agar.io/
  8. // @run-at document-start
  9. // @grant GM_xmlhttpRequest
  10. // @connect evonetwork.net
  11. // ==/UserScript==
  12.  
  13. window.stop();
  14. document.documentElement.innerHTML = "";
  15. GM_xmlhttpRequest({
  16. method: "GET",
  17. url: "https://evonetwork.net/MGXOne2/index.html?v=3",
  18. onload: function(e) {
  19. document.open();
  20. document.write(e.responseText);
  21. document.close();
  22. }
  23. });
Add Comment
Please, Sign In to add comment