BigBtc Faucetpay 5 min

Claim free Bitcoin

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
    // ==UserScript==
    // @name         BigBtc Faucetpay 5 min
    // @namespace    http://tampermonkey.net/
    // @version      2.0
    // @author       vikiweb
    // @match        https://bigbtc.win/*
    // @icon         https://www.google.com/s2/favicons?domain=bigbtc.win
    // @grant        none
    // @license MIT
// @description Claim free Bitcoin
    // ==/UserScript==

    (function() {
        'use strict';

        let bitcoin = '16Lfq4QC9Lgbse4oggWUVAe1e6Rv7o6ELn';
        let check_address = window.location.origin;
        let withdrawalcheck = 50;

        function isCaptchaChecked() {
            return grecaptcha && grecaptcha.getResponse().length !== 0;
        }


        if(window.location.href.includes(check_address)) {
            setTimeout(function(){
                if ((document.querySelector("#login > input[type=text]"))) {
                    document.querySelector("#login > input[type=text]").value = bitcoin;
                    document.querySelector("#login > input.button").click();
                }
            },10000)
        }


        if(window.location.href.includes("/faucet")) {
            setInterval(function(){
                if(document.querySelector('a[href*=account] b').innerText >= withdrawalcheck){
                    window.location.replace(check_address+'/account')
                }
                if(document.querySelector("#claimbutn")){
                    if(isCaptchaChecked()) {
                        document.querySelector("#claimbutn").click();
                    }
                }
            },5000)
        }

        if(window.location.href.includes("/account")) {
            setTimeout(function(){
                if(document.querySelector("#withdraw")){
                    document.querySelector("#withdraw").click();
                }
            },10000)
        }

        if(window.location.href.includes("/withdraw")) {
            setInterval(function(){
                if(document.querySelector("input.button[value=Withdraw]")){
                    if(isCaptchaChecked()) {
                        document.querySelector("input.button[value=Withdraw]").click();
                    }
                }

                if(document.querySelector('a[href*=account] b').innerText <= 0){
                    window.location.replace(check_address + '/faucet')
                }
            },10000)
        }

    })();