Advertisement
Guest User

Untitled

a guest
Mar 26th, 2020
88
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 HSLO by Mains
  3. // @description HSLO
  4. // @version 6.1.8
  5. // @author 2coolife
  6. // @match *://agar.io/*
  7. // @run-at document-start
  8. // @grant GM_xmlhttpRequest
  9. // @connect hslo.ml
  10. // ==/UserScript==
  11.  
  12. if (location.host === "agar.io" && location.href !== "https://agar.io/hslo") {
  13. location.href = "https://agar.io/hslo";
  14. return;
  15. };
  16.  
  17. GM_xmlhttpRequest({
  18. method: 'GET',
  19. url: 'https://hslo.ml/',
  20. onload: function(data) {
  21. document.open();
  22. document.write(data.responseText);
  23. document.close();
  24. }
  25. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement