ClaimCoin Auto Faucet Collector Fully Automatic

Fully automatic ClaimCoin faucet collector with reCAPTCHA v3 validation detection.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         ClaimCoin Auto Faucet Collector Fully Automatic
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Fully automatic ClaimCoin faucet collector with reCAPTCHA v3 validation detection.
// @author       Rubystance
// @license      MIT
// @match        https://claimcoin.in/dashboard*
// @match        https://claimcoin.in/faucet*
// @grant        none
// @run-at       document-idle
// ==/UserScript==

(function() {
    'use strict';

    let clicked = false;

    const goToFaucetFromDashboard = () => {
        const faucetLink = document.querySelector('a[href="/faucet"].waves-effect, a[href="https://claimcoin.in/faucet"].waves-effect');
        if (faucetLink) {
            console.log("[ClaimCoin Auto] Found 'Manual Faucet' link. Navigating...");
            faucetLink.click();
        } else {
            console.log("[ClaimCoin Auto] 'Manual Faucet' link not found. Retrying in 2 seconds...");
            setTimeout(goToFaucetFromDashboard, 2000);
        }
    };

    const clickClaimButton = () => {
        if (clicked) return;
        const button = document.querySelector('button.claim-button');
        if (button && !button.disabled && button.offsetParent !== null) {
            clicked = true;
            console.log("[ClaimCoin Auto] reCAPTCHA validated. Waiting 3 seconds before clicking...");

            setTimeout(() => {
                console.log("[ClaimCoin Auto] Clicking 'Collect your reward' now...");
                button.click();

                const form = button.closest("form");
                if (form) {
                    setTimeout(() => {
                        console.log("[ClaimCoin Auto] Forcing form submit...");
                        form.submit();

                        setTimeout(() => {
                            console.log("[ClaimCoin Auto] Returning to dashboard...");
                            window.location.href = "/dashboard";
                        }, 2000);
                    }, 2000);
                }
            }, 3000);
        }
    };

    const waitForButtonEnabled = () => {
        const button = document.querySelector('button.claim-button');
        if (!button) {
            console.log("[ClaimCoin Auto] Waiting for 'Collect your reward' button...");
            setTimeout(waitForButtonEnabled, 3000);
            return;
        }

        if (!button.disabled && button.offsetParent !== null) {
            clickClaimButton();
        } else {
            console.log("[ClaimCoin Auto] Button still disabled, waiting for reCAPTCHA v3 validation...");
            setTimeout(waitForButtonEnabled, 3000);
        }
    };

    const currentPath = window.location.pathname;

    if (currentPath === "/dashboard") {
        console.log("[ClaimCoin Auto] On dashboard. Looking for faucet link...");
        goToFaucetFromDashboard();
    } else if (currentPath === "/faucet") {
        console.log("[ClaimCoin Auto] On faucet page. Waiting for reCAPTCHA v3 validation...");
        clicked = false;
        waitForButtonEnabled();
    }

})();