您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
谷歌手气不错以及知乎会阻止跳转网站,此脚本用于解决此问题。
// ==UserScript== // @name 解除谷歌“手气不错”、知乎链接的重定向 // @name:zh-CN 解除谷歌“手气不错”、知乎链接的重定向 // @name:en-US Solve Google I'm Feeling Lucky Redirect Problem/ Zhihu Redirect Problem // @namespace SolveRedirect // @version 0.4 // @author Bilibili Up 漫游挨踢 // @include *google.com/* // @include *link.zhihu.com/* // @grant none // @description:zh-cn 谷歌手气不错以及知乎会阻止跳转网站,此脚本用于解决此问题。 // @description:en-US Google 's I'm feeling Lucky and Zhihu will cause redirect problem.This script will solve that. // @description 谷歌手气不错以及知乎会阻止跳转网站,此脚本用于解决此问题。 // ==/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; } if(location.href.match(/(https:\/\/link\.)?zhihu\.com\/\?target=.+/)){ a = location.href; a=a.replace(/.+target=/,"").replace("https%3A","https:").replace("http%3A","https:"); a=a.replace(/%25/g,"%"); console.log(a); location.href = a; // console.log(location.href ); } // Your code here... })();