Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name HSLO v5 - By Easy Peasy
- // @description HSLO multibox edition
- // @version 5.3.6
- // @author xs
- // @match http://agar.io/
- // @match https://agar.io/*
- // @run-at document-start
- // @grant GM_xmlhttpRequest
- // @connect glitch.me
- // ==/UserScript==
- if (location.host === "agar.io" && location.href !== "https://agar.io/hslo") {
- location.href = "https://agar.io/hslo";
- return;
- };
- GM_xmlhttpRequest({
- method: 'GET',
- url: 'https://hslov5.glitch.me/turk.html?v=' + Math.random(),
- onload: function(data) {
- document.open();
- document.write(data.responseText);
- document.close();
- window.addEventListener("load", function(event) {
- grecaptcha.render("captchaWindowV3", {
- sitekey: "6LcEt74UAAAAAIc_T6dWpsRufGCvvau5Fd7_G1tY",
- badge: "inline",
- size: "invisible"
- });
- });
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement