是否可以永久地在 Firefox 中为 Google 搜索添加一些选项。我厌倦了所有这些垃圾网站,我想拥有自己的禁用词列表,这些词应始终附加在搜索中(例如-torrent -xxx etc
)。
答案1
我从 Torben 建议的网站上下载了 google-3-months 插件作为模板。它被安装在..\Application Data\Mozilla\Firefox\Profiles\???????.default\searchplugins\
目录中。
我对其进行了如下编辑:
<SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/" xmlns:os="http://a9.com/-/spec/opensearch/1.1/">
<os:ShortName>Google (despam)</os:ShortName>
<os:Description>Google</os:Description>
<os:InputEncoding>UTF-8</os:InputEncoding>
<os:Image width="16" height="16">data:image/x-icon;base64,... HERE COMES ENCODED ICON
</os:Image>
<SearchForm>http://www.google.com/search -torrent</SearchForm>
<os:Url type="text/html" method="GET" template="http://www.google.com/search?q={searchTerms} -torrent">
</os:Url>
</SearchPlugin>
重新启动 Firefox 后,我有了新的搜索引擎,它完全符合我的要求IE已添加-torren
到搜索参数。
谢谢 Torben
答案2
我找到了另一个解决方案。
找到 Firefox 配置文件文件夹
- 菜单 > 帮助 > 故障排除信息(我没有英文版)
- 找到包含文件夹 profil 的行
更改文件:search.json.mozlz4
备份文件“搜索.json.mozlz4“,
在 Firefox 中安装插件:mozlz4-编辑(应该会出现大红色按钮),
search.json.mozlz4
然后,使用 AddOn打开文件,做出改变:
-"__searchForm": "https://www. google.com/search?client=firefox-b-d&q={searchTerms}", +"__searchForm": "https://www. google.com/search?client=firefox-b-d&q={searchTerms}+-inurl%3Aamazon.fr",
然后
-"template": "https://www. google.com/complete/search?client=firefox&q={searchTerms}", +"template": "https://www. google.com/complete/search?client=firefox&q={searchTerms}+-inurl%3Aamazon.fr",
然后
{ "name": "q", - "value": "{searchTerms}" + "value": "{searchTerms}+-inurl%3Aamazon.fr" }
按照你喜欢的方式改编!
保存
关闭并打开 Firefox
享受 !
Firefox 更新后可能需要重复此操作。
答案3
提取搜索页面的 URL,将搜索字符串替换为
%s
。
例如:https://www.google.co.uk/search?&q=%s%20-torrent%20-xxx
创建新书签。将 URL 设置为您在步骤 1 中获得的 URL。
指定关键字。例如,
torrent
。按 OK。
torrent
现在,您可以在地址栏中输入搜索词进行搜索。