您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirect Google reCAPTCHA to new search
// ==UserScript== // @name Bypass Google Sorry (reCAPTCHA) // @version 1.0.0 // @description Redirect Google reCAPTCHA to new search // @author lord_ne (modified from script by Ang Li) // @include *://www.google.*/sorry/* // @grant none // @run-at document-start // @namespace https://gf.qytechs.cn/users/230713 // ==/UserScript== // Redirects Google Sorry page to a different search engine // Original script: https://gf.qytechs.cn/en/scripts/33226-bypass-google-sorry-recaptcha function getParameterByName(name, url, decode) { name = name.replace(/[\[\]]/g, "\\$&"); let regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"); let results = regex.exec(url); if (!results) return null; if (!results[2]) return ''; if (decode) { return decodeURIComponent(results[2].replace(/\+/g, " ")); } else { return results[2]; } } (function() { 'use strict'; var searchEngineURL = "https://www.bing.com/search?q="; //var searchEngineURL = "https://duckduckgo.com/?q="; //var searchEngineURL = "https://search.yahoo.com/search?p="; //var searchEngineURL = "https://www.ecosia.org/search?q="; //var searchEngineURL = "https://www.lukol.com/s.php?q="; var googleSorryUrl = window.location.href; var targetDomain = getParameterByName('continue', googleSorryUrl, true); if(targetDomain.match("google")) { window.location.replace(searchEngineURL + getParameterByName('q', targetDomain, false)); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址