Greasy Fork

Greasy Fork is available in English.

cryptobigpay.online

Faucet claim

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         cryptobigpay.online
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Faucet claim
// @author       Gysof
// @match        https://cryptobigpay.online/*
// @icon         https://cryptobigpay.online/assets/images/favicon.ico
// @grant        none
// ==/UserScript==

// Register here - https://cryptobigpay.online/?r=25000
// You will need Hcaptcha solver - link - https://chromewebstore.google.com/detail/captcha-solver-auto-hcapt/hlifkpholllijblknnmbfagnkjneagid?hl=pt-PT
// You will need AB Links Solver - I recommend mbsolver
// Editar email e pass linha 21 - 22

(async function() {
    'use strict';

    // Editar email e senha
    const email = "Your@Email"; // Substitua com seu email
    const senha = "YouPassword"; // Substitua com sua senha

    function pr() {
        document.querySelector('#email.form-control').value = email;
        document.querySelector('#password.form-control').value = senha;
    }

    function en() {
        document.querySelector('.btn.btn-primary.btn-block.waves-effect.waves-light.a1').click();
    }

    const ca = async () => {
        while (!(grecaptcha && grecaptcha.getResponse().length > 0)) {
            await new Promise(resolve => setTimeout(resolve, 100));
        }
    };

    function ve() {
        const v = document.getElementById('antibotlinks').value.replace(/\s/g, '');
        return v.length === 12;
    }

    const lo = async () => {
        while (document.readyState !== 'complete') {
            await new Promise(resolve => setTimeout(resolve, 100));
        }
    };

    function re() {
        document.querySelector('.btn.btn-primary.btn-lg.claim-button.a1').click();
    }

    const relo = () => {
        setTimeout(() => {
            window.location.reload();
        }, 5 * 60 * 1000); 
    };

    const rf = () => {
        if (window.location.href === "https://cryptobigpay.online/dashboard") {
            window.location.href = "https://cryptobigpay.online/faucet";
        }
    };

    function hc() {
        const ifr = document.querySelector('.h-captcha iframe[data-hcaptcha-response]');
        if (ifr) {
            const r = ifr.getAttribute('data-hcaptcha-response');
            if (r) {
                return true;
            }
        }
        return false;
    }

    function np() {
        if (ve() && hc()) {
            re();
            relo();
        }
    }

    window.addEventListener('load', async function() {
        if (window.location.href === "https://cryptobigpay.online/") {
            window.location.href = "https://cryptobigpay.online/login";
        }

        if (window.location.href === "https://cryptobigpay.online/login") {
            pr();
            await ca();
            en();
        }

        if (window.location.href === "https://cryptobigpay.online/faucet") {
            await lo();

            setInterval(function() {
                if (window.location.href.includes("/faucet")) {
                    np();
                }
            }, 3000);
        }

        rf();
    });

})();