您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Auto-claim
// ==UserScript== // @name HF Faucet + Сaptcha solver-->(desc) // @namespace http://tampermonkey.net/ // @version 6.67 // @description Auto-claim // @author 👽 // @match https://helpfpcoin.site/* // @grant none // @run-at document-idle // @license MIT // ==/UserScript== /* OOOOO TTTTT RRRRR EEEEE W W OOOOO O O T R R E W W O O O O T RRRRR EEEE W W W O O O O T R R E WW WW O O OOOOO T R R EEEEE W W OOOOO */ (function() { 'use strict'; const ms = Math.floor(Math.random() * 5000) + 8000; // 8–13 sec delay setTimeout(() => { const el = document.getElementById('claimBtns'); if (!el) return; // Stop if the button is disabled if (el.disabled || el.hasAttribute('disabled')) return; // Dispatch a real human-like click ['mousedown', 'mouseup', 'click'].forEach(evtType => { const evt = new MouseEvent(evtType, { bubbles: true, cancelable: true, view: window }); el.dispatchEvent(evt); }); }, ms); })();