图片搜索测试链接:http://weibo.com/1688208774/Dp9A ... t#_rnd1459759766237
我主要用火狐浏览器,这几天在弄火狐的重定向脚本_redirector.js,使用了几个Google规则后,搜索上链接图片时,发现有时搜索的结果是386个结果,有时却是752个结果,搜索结果请看下面图片,后来我重复多次搜索,搜索出来386个结果占多数,752有时重启浏览器又可以搜索到,但不一定。386-752这个差距真的非常大啊!对Google搜索熟悉的人都知道,Google搜索是有安全保护的,但如果在链接加上“&safe=off”,就可以关闭安全保护,搜索的结果会更多,而我使用的Google规则也有关闭搜索安全保护的,就是不清楚为什么有时搜索会有时是386有时是752?有人能解释下吗?这无疑对我们平时搜索资料信息来说,减少了更多可能有用的信息,如果可以解决就好了
我在火狐版块也提问过此问题,不过目前只有1个人回答了,还不能完全解决,而从回答的人得知,直接加“&safe=off”还是无法彻底解决可获取所有搜索结果:http://bbs.kafan.cn/thread-2035835-1-1.html
我的使用的重定向脚本_redirector.js 谷歌系列规则:
[mw_shl_code=css,true]{
// google链接加密
name: "Google",
from: /^http:\/\/(([^\.]+\.)?google\..+)/i,
exclude: /google\.cn/i, // 可选,排除例外规则
to: "https://$1",
regex: true
},{
// google搜索结果禁止跳转
name: "Google2",
from: /^https?:\/\/www\.google\.com\/url\?.*url=([^&]*).*/i,
to: "$1",
regex: true
},{
// google中文转英文
name: "Google3",
from: /^https?:\/\/www\.google\.com\.tw\/(s\?|search\?|webhp\?|.*\&safe=strict)(.*)/i,
to: "https://www.google.com/search?$2&hl=en-US&safe=off",
regex: true,
},{
//关闭Google安全搜索
name: "Google4",
from: /^https?:\/\/www\.google\.com\/(s\?|search\?|webhp\?)(.*)\f((?!hl=en-US|safe=off)\w)+\f/i,
to: "https://www.google.com/search?$2&hl=en-US&safe=off",
regex: true
}[/mw_shl_code]
搜索代码是紫云飞的拖拽搜图:
[mw_shl_code=css,true]{
label: "谷歌搜索",
ActionType: "Drag",
Type: "Image",
command: function(event) {
gBrowser.addTab('https://www.google.com/searchbyimage?safe=off&image_url=' + encodeURIComponent(event.dataTransfer.getData("application/x-moz-file-promise-url")));
}
},[/mw_shl_code] |