auto-crypto.ml : Auto Faucet

https://auto-crypto.ml/?r=0xDD9cb7e222Bdd926E8d8aB1E8574e6A584c0F122

目前為 2023-03-25 提交的版本,檢視 最新版本

// ==UserScript==
// @name         auto-crypto.ml : Auto Faucet
// @namespace    auto.crypto.auto.faucet
// @version      1.3
// @description  https://auto-crypto.ml/?r=0xDD9cb7e222Bdd926E8d8aB1E8574e6A584c0F122
// @author       stealtosvra
// @match        https://auto-crypto.ml/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=auto-crypto.ml
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // INSERT BNB ADDRESS
    const inputValue = "0xDD9cb7e222Bdd926E8d8aB1E8574e6A584c0F122";
    const inputElement = document.querySelector('input[type="text"].form-control');
    inputElement.value = inputValue;

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

    setInterval(function() {
        if (hCaptcha()) {
            document.querySelector('input.btn.btn-warning.btn.claim-button').click();
        }
    }, 5000);

    const reloadDelay = 70 * 1000;
    setTimeout(function() {
        location.reload();
    }, reloadDelay);

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址