您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
当前为
// ==UserScript== // @name 解除谷歌“手气不错”的重定向 // @name:zh-CN 解除谷歌“手气不错”的重定向 // @name:en-US Google I'm Feeling Lucky Block Redirect // @namespace blockRedirect // @version 0.1 // @author Bilibili Up 漫游挨踢 // @include *google.com/* // @grant none // @description:zh-cn 将手气不错设置为chrome 搜索引擎的时候会发生重定向的问题,此脚本用于解决此问题。 // @description:en-US When set as chrome's default, I'm feeling Lucky will cause redirect.This script will solve that. // ==/UserScript== (function() { 'use strict'; var a =""; //console.log("it works");alert("Hello World!"); if(location.href.match(/(https:\/\/www\.)?google\.com\/url\?q=http.+/)){ a = location.href; a=a.replace("https://www.google.com/url?q=",""); a=a.replace(/%25/g,"%"); location.href = a; } // Your code here... })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址