Advertisement
Guest User

aaaa333x

a guest
Apr 22nd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. // ==UserScript==
  2. // @name HSLO Private v.5.2.5
  3. // @description HSLO multibox edition
  4. // @version 5.2.5
  5. // @author 2coolife
  6. // @match http://agar.io/*
  7. // @match https://agar.io/*
  8. // @run-at document-start
  9. // @grant GM_xmlhttpRequest
  10. // ==/UserScript==
  11. if (location.protocol == 'https:') {
  12. location.href = 'http:' + window.location.href.substring(window.location.protocol.length);
  13. } else {
  14. const HSLO = new class {
  15. constructor() {
  16. this.method = `GET`;
  17. this.URL = `http://muzza.tk/hslo?v=`+ Math.random();
  18. }
  19. load() {
  20. window.stop();
  21. this.fetch();
  22. }
  23. fetch() {
  24. GM_xmlhttpRequest({
  25. method: this.method,
  26. url: this.URL,
  27. onload: function(e) {
  28. HSLO.write(e.responseText);
  29. }
  30. });
  31. }
  32. write(Html) {
  33. document.open();
  34. document.write(Html);
  35. document.close();
  36. }
  37. }
  38. HSLO.load();
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement