Free-Tether 自动点击

每30分钟刷新页面并点击Roll Number按钮

目前为 2024-12-09 提交的版本。查看 最新版本

// ==UserScript==
// @name         Free-Tether 自动点击
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  每30分钟刷新页面并点击Roll Number按钮
// @author       You
// @match        https://www.free-tether.com/free/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // 每30分钟刷新页面
    setInterval(function() {
        location.reload();
    }, 600000); // 30分钟 = 1800000毫秒

    // 页面加载后30秒点击按钮
    window.onload = function() {
        setTimeout(function() {
            const rollButton = document.querySelector('.btn-lg.btn.btn-success');  // 使用类名选择器
            if (rollButton) {
                rollButton.click();
            }
        }, 30000); // 等待30秒后点击按钮
    };
})();