Auto Click SatoshiFaucet

Automa after 12 seconds on SatoshiFaucet

// ==UserScript==
// @name         Auto Click SatoshiFaucet
// @namespace    http://tampermonkey.net/
// @version      3.1
// @description  Automa after 12 seconds on SatoshiFaucet
// @author       👽
// @match        https://satoshifaucet.io/faucet/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Wait 12 seconds before clicking
    setTimeout(() => {
        const button = document.querySelector('#submit');
        if (button) {
            console.log('[Auto Faucet] Clicking the button...');
            button.click();
        } else {
            console.warn('[Auto Faucet] Button not found.');
        }
    }, 12000); // 12 seconds = 12000 ms
})();