Advertisement
Guest User

Untitled

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