BTC.ETH.LTC.SOL.DOGE Auto Roll After Countdown

After the countdown ends, the Roll button is automatically pressed

// ==UserScript==
// @name         BTC.ETH.LTC.SOL.DOGE Auto Roll After Countdown
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  After the countdown ends, the Roll button is automatically pressed
// @match        https://www.free-bitcoin.io/free/*
// @match        https://www.free-ethereum.io/free/*
// @match        https://www.free-litecoin.com/*
// @match        https://free-solana.com/free/*
// @match        https://www.free-doge.io/free/*
// @author       ALEN
// @icon         https://i.imgur.com/tnqS60o.jpeg
// ==/UserScript==

(function() {
    'use strict';

    function checkAndClick() {
        const min = parseInt(document.getElementById('cislo1')?.innerText || "0");
        const sec = parseInt(document.getElementById('cislo2')?.innerText || "0");
        const captchaValue = document.getElementById('captchainput')?.value.trim();
        const btn = document.querySelector('button[onclick="roll()"]');

        // 當倒數為 0 且驗證碼有輸入
        if (min === 0 && sec === 0 && captchaValue && btn) {
            console.log("倒數結束,驗證碼已輸入 → 自動點擊");
            btn.click();
        }
    }

    // 每秒檢查一次
    setInterval(checkAndClick, 3000);
})();

QingJ © 2025

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