您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This automatically clicks on any recaptcha on the webpage and submits it directly after you solved it
当前为
// ==UserScript== // @name Recaptcha Helper // @version 0.2 // @description This automatically clicks on any recaptcha on the webpage and submits it directly after you solved it // @author Royalgamer06 & Tackyou // @include * // @grant none // @namespace Royalgamer06 & Tackyou // ==/UserScript== if (location.href.indexOf('google.com/recaptcha') > -1) { var captcha = setInterval(function() { if (document.querySelectorAll('.recaptcha-checkbox-checkmark').length > 0) { clearInterval(captcha); document.querySelector('.recaptcha-checkbox-checkmark').click(); } }, 100); } else { var forms = document.forms; var rc_form = ''; for (var i = 0; i < forms.length; i++) { if (forms[i].innerHTML.indexOf('google.com/recaptcha') > -1) { rc_form = forms[i]; } } var inv = setInterval(function() { if (grecaptcha.getResponse().length > 0) { clearInterval(inv); rc_form.submit(); } }, 100); }