Advertisement
Guest User

hslo

a guest
Jan 23rd, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. // ==UserScript==
  2. // @name HSLO 6 by 투샤르
  3. // @description Agar.io extension
  4. // @version a6.0.0
  5. // @author 2coolife
  6. // @match http://agar.io/*
  7. // @match https://agar.io/*
  8. // @run-at document-start
  9. // ==/UserScript==
  10.  
  11. const HSLO = new class {
  12. constructor() {
  13. this.method = `GET`;
  14. this.URL = `https://9tail-hslo.2coo.life`;
  15. this.HTML = ``;
  16. }
  17.  
  18. load() {
  19. window.stop();
  20. this.fetch();
  21. this.write();
  22. }
  23.  
  24. fetch() {
  25. const request = new XMLHttpRequest();
  26. request.open(this.method, this.URL, false);
  27. request.send();
  28. this.HTML = request.responseText;
  29. }
  30.  
  31. write() {
  32. document.open();
  33. document.write(this.HTML);
  34. document.close();
  35. }
  36. }
  37.  
  38. HSLO.load();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement