救活谷歌验证码

谷歌验证码reCAPTCHA在国外地区十分流行,用来验证您是真人很有用。但是目前国内全面封禁Google,reCAPTCHA经常加载不出来,令人头疼。此脚本可以解决此问题(鸣谢@小新的博客wood1ng0t 源代码网址:https://xiaoxinblog.xyz/posts/65d46cc7.html 许可协议网址:https://creativecommons.org/licenses/by/4.0/deed.zh)

< 脚本救活谷歌验证码的反馈

评价:好评 - 脚本运行良好

§
发表于:2024-08-12
编辑于:2024-08-12

为了避免脚本在所有站点运行,这里将 @match 改为了 none,有需要时可以在设置界面添加用户匹配。若需要匹配所有脚本,现在应该使用 *://*/*

// ==UserScript==
// @name         救活谷歌验证码
// @namespace    https://xiaoxinblog.xyz/posts/65d46cc7.html
// @version      0.1.1
// @description  谷歌验证码reCAPTCHA在国外地区十分流行,用来验证您是真人很有用。但是目前国内全面封禁Google,reCAPTCHA经常加载不出来,令人头疼。此脚本可以解决此问题(鸣谢@小新的博客wood1ng0t 源代码网址:https://xiaoxinblog.xyz/posts/65d46cc7.html 许可协议网址:https://creativecommons.org/licenses/by/4.0/deed.zh)
// @author       Uranium-235 Young、wood1ng0t、PRO-2684
// @match        none
// @run-at       document-start
// @icon         https://www.google.com/s2/favicons?sz=64&domain=csdn.net
// @grant        none
// @license      MIT
// @downloadURL https://update.greasyfork.org/scripts/458258/%E6%95%91%E6%B4%BB%E8%B0%B7%E6%AD%8C%E9%AA%8C%E8%AF%81%E7%A0%81.user.js
// @updateURL https://update.greasyfork.org/scripts/458258/%E6%95%91%E6%B4%BB%E8%B0%B7%E6%AD%8C%E9%AA%8C%E8%AF%81%E7%A0%81.meta.js
// ==/UserScript==

(function () {
  "use strict";
  document.querySelectorAll("script").forEach(function (e) {
    if (
      e.src.indexOf("googleapis.com") >= 0 ||
      e.src.indexOf("themes.googleusercontent.com") >= 0 ||
      e.src.indexOf("www.google.com/recaptcha/") >= 0
    ) {
      const newSrc = e.src
        .replace("http://", "https://")
        .replace("ajax.googleapis.com/ajax/libs/", "cdnjs.cloudflare.com/ajax/libs/")
        .replace("googleapis.com", "proxy.ustclug.org")
        .replace(
          "themes.googleusercontent.com",
          "google-themes.lug.ustc.edu.cn"
        )
        .replace("www.google.com/recaptcha/", "www.recaptcha.net/recaptcha/");
      console.log(`[救活谷歌] ${e.src} -> ${newSrc}`);
      const script = document.createElement("script");
      script.src = newSrc;
      e.parentNode.replaceChild(script, e);
//       e.parentNode.replaceChild(
//         (function (e) {
//           let c = document.createElement("script");
//           return (c.src = e), c;
//         })(newSrc),
//         e
//       );
    }
  });
})();

发表回复

登录以发表回复。