fly Inc

Bypass Familia Fly

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         fly Inc
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  Bypass Familia Fly
// @author       keno venas
// @license      MIT
// @match        https://rshostinginfo.com/*
// @match        https://shoesonic.com/*
// @match        https://pluginmixer.com/*
// @match        https://edonmanor.com/*
// @match        https://boardgamechick.com/*
// @match        https://healthyfollicles.com/*
// @match        https://gearsadviser.com/*
// @match        https://vrtier.com/*
// @match        https://misterio.ro/*
// @match        https://techedifier.com/*
// @match        https://hauntingrealm.com/*
// @match        https://batmanfactor.com/*
// @match        https://shinshu.net/*
// @match        https://shinchu.net/*
// @match        https://allcryptoz.net/*
// @match        https://gametechreviewer.com/*
// @match        https://phineypet.com/*
// @match        https://vegan4k.com/*
// @match        https://chefknives.expert/*
// @match        https://tunebug.com/*
// @match        https://crewus.net/*
// @match        https://basketballsavvy.com/*
// @match        https://kenzo-flowertag.com/*
// @match        https://ineedskin.com/*
// @match        https://rsadnetworkinfo.com/*
// @match        https://advertisingexcel.com/landing/*
// @match        https://advertisingexcel.com/outgoing/*
// @match        https://boredboard.com/*
// @match       *://*/*bypass.html
// @icon         https://www.google.com/s2/favicons?sz=64&domain=pluginmixer.com
// @grant        none
// ==/UserScript==

(function() {
  const centros = document.querySelectorAll("center");
  for (const centro of centros) {
    const codes = centro.querySelectorAll("code");
    const h1s = centro.querySelectorAll("h1");

    for (const code of codes) {
      centro.parentNode.insertBefore(code, centro);
    }

    for (const h1 of h1s) {
      centro.parentNode.insertBefore(h1, centro);
    }
    const buttons = centro.querySelectorAll("button");
    if (buttons.length === 0) {
      centro.parentNode.removeChild(centro);
    }
  }
  const botoes = document.querySelectorAll("button");
  for (const botao of botoes) {
    if (botao.hasAttribute("disabled")) {
      botao.removeAttribute("disabled");
    }
  }
var buttons = document.evaluate("//button[contains(@class, 'btn-')]", document, null, XPathResult.ANY_TYPE, null);
function clickButton(button) {
  setTimeout(function() {
    button.click();
  }, 3000);
}
var button;
while (button = buttons.iterateNext()) {
  console.log(button);
  clickButton(button);
}
if (
    document.body.innerText.includes("OOPS! YOU HAVE BEEN BLOCKED") ||
    document.body.innerText.includes("Sorry, you have been blocked") ||
    document.body.innerText.includes("Web server is returning an unknown error")) {
    if (document.referrer !== window.location.href) {
        window.location.href = document.referrer;
    } else {
        window.location.href = "paginaInicial.html";
    }
}
    function clickContinueButton() {
        var buttons = document.querySelectorAll('button');
        for (var i = 0; i < buttons.length; i++) {
            if (buttons[i].textContent.includes('Continue')) {
                var button = buttons[i];
                console.log('Botão "Continue" encontrado. Clicando em 3 segundos...');
                setTimeout(function() {
                    button.click();
                    console.log('Botão "Continue" clicado!');
                }, 1000);
                break;
            }
        }
    }
    function clickGetLinkButton() {
        var buttons = document.querySelectorAll('button');
        for (var i = 0; i < buttons.length; i++) {
            if (buttons[i].textContent.includes('Get Link')) {
                var button = buttons[i];
                console.log('Botão "Get Link" encontrado. Clicando em 5 segundos...');
                setTimeout(function() {
                    button.click();
                    console.log('Botão "Get Link" clicado!');
                }, 1000);
                break;
            }
        }
    }
    var targetNode = document.body;
    var config = { attributes: true, childList: true, subtree: true };
    var callback = function(mutationsList, observer) {
        for (var mutation of mutationsList) {
            if (mutation.type === 'childList' || mutation.type === 'attributes') {
                clickContinueButton();
                clickGetLinkButton();
            }
        }
    };
    var observer = new MutationObserver(callback);
    observer.observe(targetNode, config);
    clickContinueButton();
    clickGetLinkButton();
})();