您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Faucet automatic collection 24 hours a day
// ==UserScript== // @name TON Auto // @namespace http://tampermonkey.net/ // @version 1.2 // @description Faucet automatic collection 24 hours a day // @author ALEN // @icon https://i.imgur.com/tnqS60o.jpeg // @match https://freetoncoin.in/* // @grant none // ==/UserScript== (function () { 'use strict'; const VERIFY_INPUT_SELECTOR = 'input[name="cf-turnstile-response"]'; const CLAIM_BUTTON_TEXT = 'Claim'; const CHECK_INTERVAL = 2000; let hasClaimed = false; function isVerificationComplete() { const verifyInput = document.querySelector(VERIFY_INPUT_SELECTOR); return verifyInput && verifyInput.value.trim() !== ''; } function clickClaimButton() { if (hasClaimed) return; const buttons = document.querySelectorAll('button'); for (const button of buttons) { if (button.textContent.trim().toUpperCase() === CLAIM_BUTTON_TEXT.toUpperCase()) { console.log('驗證通過!正在點擊 Claim 按鈕...'); button.click(); hasClaimed = true; return; } } console.log('Claim 按鈕未找到,將稍後重試...'); } function checkVerificationAndClick() { if (isVerificationComplete()) { console.log('驗證完成,觸發點擊動作!'); clickClaimButton(); } else { console.log('驗證尚未完成,等待中...'); } } setInterval(checkVerificationAndClick, CHECK_INTERVAL); // 每 30 分鐘自動重新整理頁面 setTimeout(() => { console.log('30 分鐘到,自動重新整理頁面...'); location.reload(); }, 30 * 60 * 1000); // 30 分鐘 })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址