求个chrome去除google跳转的插件

用的是encrypted.google.com
试了几个插件都没有效果,求个能用的!

我是直接用ip地址来访问google,比如http://173.194.70.191/,与isp有关,上边并不一定适合你。不用考虑会跳转

@maketk 试了一下还是会跳转

试试这个呢?Remove Google Redirection - Chrome Web Store

我一直在用的是这个名字 但不是这款插件 我用的那款已经下架了

Google会根据你的地区自动切换搜索的语言 在大陆是自动跳转到谷歌香港 你懂的 如果你要搜索一些奇奇怪怪的东西 是很难的 因为google香港禁用了安全搜索 这个时候你需要 Google 打开这个网址 Google就不会自动跳转了 或者进入https://encrypted.google.com 解除google的搜索限制 这个是完全加密的

转的 @martinsol
http://ippotsuko.com/blog/use-google/

油侯上有脚本,用油侯插件就行了,还能跨浏览器用,这是我以前用的,把include改成你用的GOOGLE地址就行

// @name           remove google search redirection
// @namespace      http://www.xx.com
// @description    remove redirection from google search result
// @include        *://www.google.com/*&q=*
// @include        *://www.google.com/*?q=*
// @include        *://www.google.com.hk/*&q=*
// @include        *://www.google.com.hk/*?q=*
// @grant          GM_getValue
// @grant          GM_setValue
// ==/UserScript==
 
// ==About==
// author: xxx
// Email: @gmail.com
// site: http://www.xx.com
//
 
window.addEventListener('load', function() {
    var retryTimes = 10;
    function checkFunc() {
        var ires = document.getElementById('ires');
        if (ires == null) {
            retryTimes --;
            if (retryTimes > 0) {
                window.setTimeout(checkFunc, 500);
            }
            return;
        }
 
        var as = ires.getElementsByTagName('a');
        for (var i = 0, l = as.length; i < l; ++ i) {
            var a = as[i];
            a.removeAttribute('onmousedown');
        }
    }
 
    window.setTimeout(function() {
        checkFunc();
    }, 1);
}, false);

你要的是这种东西么?