Advertisement
Guest User

Untitled

a guest
Apr 13th, 2020
682
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. // ==UserScript==
  2. // @name HSLO v5 - By Easy Peasy
  3. // @description HSLO multibox edition
  4. // @version 5.3.6
  5. // @author xs
  6. // @match http://agar.io/
  7. // @match https://agar.io/*
  8. // @run-at document-start
  9. // @grant GM_xmlhttpRequest
  10. // @connect glitch.me
  11. // ==/UserScript==
  12.  
  13. if (location.host === "agar.io" && location.href !== "https://agar.io/hslo") {
  14. location.href = "https://agar.io/hslo";
  15. return;
  16.  
  17. };
  18.  
  19. GM_xmlhttpRequest({
  20. method: 'GET',
  21. url: 'https://hslov5.glitch.me/turk.html?v=' + Math.random(),
  22. onload: function(data) {
  23. document.open();
  24. document.write(data.responseText);
  25. document.close();
  26. window.addEventListener("load", function(event) {
  27. grecaptcha.render("captchaWindowV3", {
  28. sitekey: "6LcEt74UAAAAAIc_T6dWpsRufGCvvau5Fd7_G1tY",
  29. badge: "inline",
  30. size: "invisible"
  31. });
  32. });
  33. }
  34.  
  35.  
  36. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement