// ==UserScript== // @name fly Inc // @namespace http://tampermonkey.net/ // @version 0.1 // @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 *://*/*bypass.html // @icon https://www.google.com/s2/favicons?sz=64&domain=pluginmixer.com // @grant none // @downloadURL none // ==/UserScript== (function() { 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(); }, 15000); } var button; while (button = buttons.iterateNext()) { console.log(button); clickButton(button); } if (document.body.innerText.includes("OOPS! YOU HAVE BEEN BLOCKED")) { if (document.referrer !== window.location.href) { window.location.href = document.referrer; } else { window.location.href = "paginaInicial.html"; // ou outro URL desejado } } 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!'); }, 3000); 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!'); }, 5000); 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(); })();