CryptoDrops Bot

auto claim faucet doge

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey 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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         CryptoDrops Bot
// @namespace    cryptodrops.cloud
// @version      2024-05-21.1
// @description  auto claim faucet doge
// @author       Script Bot Dev
// @match        https://cryptodrops.cloud/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=microsoft.com
// @grant        none
// @license      MIT
// ==/UserScript==

var Clicked = false;
var BOT = setInterval(function(){

if(document.body.outerText.includes("satoshi was sent to your") === true){
	window.location.reload();
	clearInterval(BOT);
}
if(document.body.outerText.includes("satoshi every minute") === true){
	document.querySelector("#address").value = "ENDEREÇODOGECOIN"; // MUDE SUA CARTEIRA NESTA LINHA
	if(Clicked === false){document.querySelector("body > div.container.flex-grow.my-4 > div.row.my-2 > div.col-12.col-md-8.col-lg-6.order-md-2.mb-4.text-center > form > div:nth-child(4) > button").click();Clicked = true;}
    if(document.querySelector(".g-recaptcha")){
            var recaptcha = document.querySelector("#g-recaptcha-response").value;
               if((recaptcha) && recaptcha > ""){
                document.querySelector("form").submit();
                   clearInterval(BOT);
            }
            }
}
if(document.body.outerText.includes("You have to wait 1 minute") === true){
	setTimeout(function(){window.location.reload();},2000);
	clearInterval(BOT);
}
},500);