claimlitoshi.top (ON)

Automatically click the "Collect your reward" button After 10 Sec

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         claimlitoshi.top (ON)
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Automatically click the "Collect your reward" button After 10 Sec
// @author       👽
// @license      MIT
// @match        https://claimlitoshi.top/faucet/1
// @match        https://claimlitoshi.top/faucet/2
// @match        https://claimlitoshi.top/faucet/3
// @match        https://claimlitoshi.top/faucet/4
// @match        https://claimlitoshi.top/faucet/5
// @match        https://claimlitoshi.top/faucet/6
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Wait for 10 seconds before triggering the click
    setTimeout(function() {
        // Find the button element
        const button = document.querySelector('button[data-bs-toggle="tooltip"][data-bs-placement="top"].claim-button');

        // Check if the button exists
        if (button) {
            button.click(); // Click the button
            console.log('Button clicked!'); // Log for confirmation
        } else {
            console.log('Button not found!');
        }
    }, 10000); // 10000 milliseconds = 10 seconds
})();