阅读:14515回复:38
google现在每个搜索结果都跳转??
以前没有出现这种情况,今天发现,几乎每个搜索结果打开后都不是直接从原网址打开,而是从google跳转到原网址,不管用google.com、google https、google hk都是一样.各位网友看看是不是跟我有同样情况?????
|
|
1楼#
发布于:2011-10-21 01:23
有楼上说的这个情况,会导致....链接重置~
entryted没有加跳转.....赞一个~ |
|
|
2楼#
发布于:2011-10-21 01:23
|
|
3楼#
发布于:2011-10-21 01:23
没有默认HTTPS吧,天朝基本默认全部转到HK去了,非得上NCR启用SSL才会用https
|
|
4楼#
发布于:2011-10-21 01:23
|
|
5楼#
发布于:2011-10-21 01:23
我的ABP自定义过滤:
@@|http://www.google.com.hk/imghp?$document @@|http://www.google.com/imghp?$document http://www.google.com.hk/extern_js/f/*.js http://www.google.com/extern_js/f/*.js https://www.google.com/extern_js/f/*.js 然后在 less google脚本里添加了 // @include http://www.google.com.hk/* // @include http://www.google.com/* // @include https://www.google.com/* 这样就不跳转了,但是有时谷歌搜索页面的左侧“搜索工具”中点击“更多”,没反应,已排除ABP,是less google脚本的问题,有办法解决吗? |
|
6楼#
发布于:2011-10-21 01:23
没看出来跳转有啥不好的。我就一直让他跳转。
|
|
7楼#
发布于:2011-10-21 01:23
|
|
8楼#
发布于:2011-10-21 01:23
旧脚本没问题,只是现在google的搜索页默认启用https,旧的允许网页中不包含,增加一条
// @include https://www.google.com/search?* 就好了。 我用的 " // ==UserScript== // @name Scrub Google Redirect Links // @namespace http://www.zooomr.com/photos/ping/ // @description Removes the Google redirect in search result links. // @include http://www.google.com/search?* // @include https://encrypted.google.com/search?* // @include http://*.google.*/*q=* // @include https://www.google.com/search?* // ==/UserScript== (function() { // add timeout to delay scrubs, Google seems to be using script to load those mousedowns -- sneaky! setTimeout(function() { // kill off the rwt for good so that it will work with Google Instant unsafeWindow.rwt = function() { return true; } // otherwise, wipe mousedowns var redirectLinks = document.evaluate( "//a[@class='l']" , document , null , XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE , null); if (typeof redirectLinks != 'undefined' && redirectLinks.snapshotLength > 0) { for (var i = 0; i < redirectLinks.snapshotLength; i++) { redirectLinks.snapshotItem(i).setAttribute('onmousedown',''); } } }, 500); })() " |
|
9楼#
发布于:2011-10-21 01:23
难搞,真的解决不了这个问题。表面上,搜索结果是正常的网址,在网址上面右键一下,就看到网址变成了http://www.google.com/url?XXXXXXXXXXXXXXXXXXXXXXXXX 类似这样的一大堆乱七八糟的网址。楼上的脚本无效。
|
|
10楼#
发布于:2011-10-21 01:23
http://userscripts.org/scripts/show/96744 试了一下,像我这种一页50结果的,这个脚本处理起来太慢了,打开页面后卡3秒。相比之下跳转的延迟反而感觉不到了。 |
|
|
11楼#
发布于:2011-10-21 01:23
|
|
12楼#
发布于:2011-10-21 01:23
以下两个脚本都可起到禁用搜索跳转的效果:
http://userscripts.org/scripts/show/113577 目前正在使用 还有这个: http://userscripts.org/scripts/show/116471 实现原理应该是一样的 |
|
13楼#
发布于:2011-10-21 01:23
添加规则了.还是跳转.而且 链接被重置.链接失败
|
|
14楼#
发布于:2011-10-21 01:23
|
|
上一页
下一页