claimcoin

claimcoin autoclaim faucet & madfaucet

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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);
})();