如何在 Firefox 中添加一些永久的 Google 搜索选项

如何在 Firefox 中添加一些永久的 Google 搜索选项

是否可以永久地在 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 配置文件文件夹

  1. 菜单 > 帮助 > 故障排除信息(我没有英文版)
  2. 找到包含文件夹 profil 的行

更改文件:search.json.mozlz4

  1. 备份文件“搜索.json.mozlz4“,

  2. 在 Firefox 中安装插件:mozlz4-编辑(应该会出现大红色按钮),

  3. search.json.mozlz4然后,使用 AddOn打开文件,

  4. 做出改变:

    -"__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"
    }
    

    按照你喜欢的方式改编!

  5. 保存

  6. 关闭并打开 Firefox

  7. 享受 !

Firefox 更新后可能需要重复此操作。

答案3

  1. 提取搜索页面的 URL,将搜索字符串替换为%s
    例如:https://www.google.co.uk/search?&q=%s%20-torrent%20-xxx

  2. 创建新书签。将 URL 设置为您在步骤 1 中获得的 URL。

  3. 指定关键字。例如,torrent。按 OK。
    在此处输入图片描述

  4. torrent现在,您可以在地址栏中输入搜索词进行搜索。

相关内容