Faucet Rotator

Auto claim loop

Από την 14/04/2024. Δείτε την τελευταία έκδοση.

// ==UserScript==
// @name         Faucet Rotator
// @namespace    Terminator
// @version      0.1/5
// @description  Auto claim loop
// @author       keno venas
// @license      MIT
// @match        https://bnb-earn.com/*
// @match        https://btcrocket.net/*
// @match        https://ethrocket.net/*
// @match        https://bch-rocket.com/*
// @match        https://dash-rocket.com/*
// @match        https://solanarocket.com/*
// @match        https://cardanorocket.com/*
// @match        https://trxrocket.com/*
// @match        https://tonrocket.com/*
// @match        https://bnbrocket.com/*
// @match        https://ltc-rocket.com/*
// @match        https://cryptoarea.net/*
// @match        https://sol-earn.com/*
// @match        https://tron-earn.com/*
// @match        https://faucetdash.com/*
// @match        https://matic-earn.com/*
// @match        https://cryptoxmr.net/*
// @match        https://dash-earn.com/*
// @match        https://dgb-earn.com/*
// @match        https://ton-earn.com/*
// @match        https://dgbrocket.com/*
// @match        https://xrp-rocket.com/*
// @match        https://matic-rocket.com/*
// @match        https://doge-rocket.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=cryptoarea.net
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var style = document.createElement('style');
    style.innerHTML = `
        #contador {
            position: fixed;
            top: 10px;
            left: 10px;
            color: black;
            background-color: blue;
            padding: 5px 10px;
            border-radius: 5px;
            z-index: 9999;
        }
    `;
    document.head.appendChild(style);
    var contadorElement = $('<div id="contador">');
    $('body').append(contadorElement);
    function atualizarContador(segundos) {
        contadorElement.text(segundos);
    }
    function recarregarPagina() {
        var segundos = 70;
        atualizarContador(segundos);

        setInterval(function() {
            segundos--;
            atualizarContador(segundos);

            if (segundos === 0) {
                location.reload();
            }
        }, 1000);
    }
    recarregarPagina();
    function clicarBotaoComDelay(selector, delay) {
        setTimeout(function() {
            var botao = document.querySelector(selector);
            if (botao) {
                botao.click();
            }
        }, delay);
    }
    window.addEventListener('load', function() {
        clicarBotaoComDelay('button#faucet_roll', 5000);

    });
    window.addEventListener('load', clicarComDelay, false);
    if (window.location.href === "https://bch-rocket.com/register") {
        window.location.href = "https://bch-rocket.com/login";
    }
    function preencherCampos() {
        var email = "[email protected]";
        var senha = "suasenha";

        document.querySelector('input#floatingEmail').value = email;
        document.querySelector('input#floatingPassword').value = senha;

        setTimeout(clicarBotao, 3000);
    }
    function clicarBotao() {
        var botao = document.querySelector('button.btn');
        if (botao) {
            botao.click();
        }
    }
    window.addEventListener('load', preencherCampos);
    function clicarComDelay() {
        setTimeout(function() {
            var botao = document.querySelector('button#faucet_claim');
            if (botao) {
                botao.click();
            }
        }, 5000);
    }
    window.addEventListener('load', clicarComDelay, false);
})();