您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Clicks ROLL after 12 seconds, then refreshes after 1 hour and 1 minute (3660s)
// ==UserScript== // @name F b in // @namespace https://tampermonkey.net/ // @version 1.1 // @description Clicks ROLL after 12 seconds, then refreshes after 1 hour and 1 minute (3660s) // @author 👽 // @match https://freebitco.in/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; window.addEventListener('load', () => { console.log('⏳ Waiting 12 seconds before clicking ROLL...'); setTimeout(() => { const rollButton = document.getElementById('free_play_form_button'); if (rollButton && rollButton.style.display !== 'none') { console.log('✅ Clicking the ROLL button now...'); rollButton.click(); // Wait 1 hour + 1 minute (3660 seconds), then refresh console.log('⏲️ Waiting 1 hour and 1 minute to refresh...'); setTimeout(() => { location.reload(); }, 3660000); // 61 minutes in milliseconds } else { console.log('❌ ROLL button not found or not visible. Will not proceed.'); } }, 12000); // Wait 12 seconds before clicking }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址