Greasy Fork镜像 支持简体中文。

Speed up Google Captcha

Makes Google Captcha works faster by removing slow visual transitions and unnecessary delays.

  1. // ==UserScript==
  2. // @name Speed up Google Captcha
  3. // @namespace https://gf.qytechs.cn/en/users/85671-jcunews
  4. // @version 1.0.1
  5. // @license AGLPv3
  6. // @author jcunews
  7. // @description Makes Google Captcha works faster by removing slow visual transitions and unnecessary delays.
  8. // @match https://www.google.com/recaptcha/api2/bframe*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (st => {
  13. st = setTimeout;
  14. setTimeout = function(fn, dur) {
  15. if ([4000,50].includes(dur)) dur = 0;
  16. return st.apply(this, arguments);
  17. };
  18. document.head.appendChild(document.createElement("STYLE")).innerHTML = '*{transition:none!important}';
  19. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址