Advertisement
Byakko23

Xanny Ronked

Dec 13th, 2019
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Xanny [PRODUCTION]
  3. // @version 1.0.5
  4. // @author Nebula & Nel
  5. // @match *://agar.io/*
  6. // @run-at document-start
  7. // @grant GM_xmlhttpRequest
  8. // ==/UserScript==
  9. if (location.host === "agar.io" && location.pathname === "/") {
  10. window.stop();
  11. location.href = "https://agar.io/xanny" + location.hash;
  12. return;
  13. }
  14.  
  15. window.stop();
  16. document.documentElement.innerHTML = "";
  17. GM_xmlhttpRequest({
  18. method: "GET",
  19. url: "http://xn3bula.xyz/xanny/",
  20. onload: function (e) {
  21. document.open();
  22. document.write(e.responseText);
  23. document.close();
  24. }
  25. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement