您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Walk through all PTC
当前为
// ==UserScript== // @name faucetoshi.com // @description Walk through all PTC // @version 1.0 // @author WXC // @match https://faucetoshi.com/ptc* // @grant none // @require https://code.jquery.com/jquery-latest.min.js // @grant unsafeWindow // @run-at document-idle // @noframes // @namespace https://gf.qytechs.cn/users/713625 // ==/UserScript== (function() { 'use strict'; setInterval(function() { window.focus(); }, 500); document.hasFocus = function () {return true;}; var $ = window.jQuery; $.noConflict(); $(document).ready(function() { setTimeout( function() { // PTC solve if( location.href.indexOf("/ptc/view") > -1 ) { // recaptcha V3 $("iframe").remove(); var check_ptc = setInterval( function() { if( $("#verify").is(":visible") ) { clearInterval( check_ptc ); setTimeout( function() { $("form:first").submit(); }, ( 1 * 1000 ) ); } }, 2000 ); } // PTC list else if( location.href.indexOf("/ptc") > 0 ) { if( $("button.btn:contains('Go')").is(":visible") ) { $('.btn-primary:first').click(); } } else {} }, ( 3 * 1000 ) ); }); // global reload setTimeout( function() { location.href = location.href; }, ( 90 * 1000 ) ); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址