claimcoin

claimcoin autoclaim faucet & madfaucet

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         claimcoin
// @namespace    https://violentmonkey.github.io
// @version      1.2
// @description  claimcoin autoclaim faucet & madfaucet
// @author       info1944
// @license      MIT
// @match        *://claimcoin.in/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=claimcoin.in
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setInterval(function(){
        const recaptchav3 = document.querySelector('input[name="recaptchav3"]')?.value;
        if (!recaptchav3 || recaptchav3.trim() === "") {
            console.log('Captcha belum diselesaikan. Tunggu...');
            return; // Tunggu tanpa reload halaman jika keduanya belum diisi
        }
        setTimeout(() => {

            const claimButton = document.querySelector("#layout-wrapper > div.main-content > div > div > div:nth-child(4) > div.col-12.col-md-8.col-lg-6.order-md-2.mb-4.text-center > form > button");
            if(claimButton && claimButton.innerText.includes('Collect your reward')){
                claimButton.click();
            }
        },6000);
    }, 3000);
})();