Greasy Fork is available in English.

Free Bitcoin via earncrypto.in autologin

Claim free Bitcoin

// ==UserScript==
// @name         Free Bitcoin via earncrypto.in autologin
// @namespace    Claim free Bitcoin
// @version      1.0
// @description  Claim free Bitcoin
// @author       vikiweb
// @match        https://earncrypto.in/*
// @match        https://earncrypto.in/
// @icon         https://www.google.com/s2/favicons?domain=earncrypto.in
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    ////EDIT YOUR USER NAME AND PASSWORD BELOW////
    var username = "username/email";////EXAMPLE////
    var password = "password";////EXAMPLE////
    var clicked = false;
    var address = false;

    if(document.querySelector("body > .theme-banner-one") && (window.location.href.includes("https://earncrypto.in/"))) {
        window.location.replace("https://earncrypto.in/login");
    }

    if(window.location.href.includes("https://earncrypto.in/account")) {
        window.location.replace("https://earncrypto.in/faucet");
    }

    setInterval(function() {
        if (document.querySelector("#username")) {
            document.querySelector("#username").value = username;
            address = true;
        }
        if (document.querySelector("#password")) {
            document.querySelector("#password").value = password;
            address = true;
        }
    }, 1000);

    setInterval(function() {

        function isCaptchaChecked() {
            return grecaptcha && grecaptcha.getResponse().length !== 0;
        }

        if (isCaptchaChecked()) {
            document.querySelector("#button").click();
            clicked = true;
        }

        clicked = true;
    },6000);

    setTimeout(function() {

        if (document.getElementsByClassName("btn btn-block btn-primary btn-lg")[0]) {
            document.getElementsByClassName("btn btn-block btn-primary btn-lg")[0].click();
        }
    }, 3000);

    setInterval(function() {
        function isCaptchaChecked() {
            return grecaptcha && grecaptcha.getResponse().length !== 0;
        }

        if (isCaptchaChecked()) {
            document.getElementsByClassName("btn btn-block btn-success btn-lg")[0].click();
            clicked = true;
        }
    }, 3000);

    setTimeout(function() {
        window.location.replace(window.location.pathname + window.location.search + window.location.hash);
    }, 10*60000);
})();