您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
BitsBon 24/7 👽👽👽 support my YB channel for more
// ==UserScript== // @name Bitsbon For All (ON) // @namespace http://tampermonkey.net/ // @version 1.5 // @description BitsBon 24/7 👽👽👽 support my YB channel for more // @author 👽 // @license MIT // @match https://bitsbon.com/* // @grant none // ==/UserScript== (function() { 'use strict'; window.addEventListener('load', function() { console.log("Page loaded. Waiting 5 seconds..."); setTimeout(function() { const button = document.querySelector('button.btn.btn-danger.btn-md.w-100.mt-2'); if (button) { console.log("Clicking 'Roll & Win' button..."); button.click(); } else { console.log("Roll & Win button not found."); } // Wait 1 minute (60,000 ms), then reload console.log("Waiting 1 minute to refresh..."); setTimeout(function() { console.log("Refreshing page..."); location.reload(); }, 60000); }, 5000); // Wait 5 seconds }); })();