您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically clicks the "Claim Now" button when reCAPTCHA is solved and the button is enabled.
当前为
// ==UserScript== // @name 99.astrorunner unlimited faucet // @namespace auto click unlimited faucet // @version 0.1 // @description Automatically clicks the "Claim Now" button when reCAPTCHA is solved and the button is enabled. // @author OjoNgono // @match https://astrorunner.net/notimer // @match https://99faucet.com/notimer // @grant none // @license Copyright OjoNgono // ==/UserScript== (function() { 'use strict'; // Function to check reCAPTCHA and click the button const checkRecaptchaAndClick = () => { const claimInterval = setInterval(() => { // Check for reCAPTCHA response const recaptcha = document.querySelector('[name="g-recaptcha-response"]'); // Check for the Claim button const claimButton = document.querySelector('.claim-button'); if (claimButton && recaptcha && recaptcha.value.length > 0 && !claimButton.disabled) { // Click the button if reCAPTCHA is completed and button is enabled claimButton.click(); console.log('Claim button clicked!'); clearInterval(claimInterval); // Stop checking after clicking } else { console.log('Waiting for reCAPTCHA completion or button activation...'); } }, 1000); // Check every second }; // Run the function checkRecaptchaAndClick(); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址