如何在 Chrome 中恢复默认的 Google 搜索引擎?

emp*_*mpz 20 google-chrome search-engines

如何在 Chrome 中恢复为默认的 Google 搜索引擎?

大多数网站都有一个简单的查询字符串搜索,比如http://mysite/search/?query=%s,但谷歌有一些奇怪的查询字符串,我不知道如何恢复它。

Anu*_*rag 37

你可以去

设置 > 管理搜索引擎
在谷歌浏览器中,您可以再次添加谷歌搜索引擎。就是这样:

  1. 在底部你会发现
    其他搜索引擎
    以及用于添加新搜索引擎的文本框下方。
  2. 取名字 -
    谷歌
    关键字 -
    google.com
    并将以下代码粘贴到 URL 框中: {google:baseURL}search?q=%s&{google:RLZ}{google:acceptedSuggestion}{google:originalQueryForSuggestion}{google:assistedQueryStats}{google:searchFieldtrialParameter}{google:searchClient}{google:sourceId}{google:instantExtendedEnabledParameter}ie={inputEncoding}

希望这可以帮助。

  • Google 默认的新值:`{google:baseURL}search?q=%s&{google:RLZ}{google:originalQueryForSuggestion}{google:assistanceQueryStats}{google:searchFieldtrialParameter}{google:bookmarkBarPinned}{google:searchClient}{google :sourceId}{google:instantExtendedEnabledParameter}{google:omniboxStartMarginParameter}{google:contextualSearchVersion}ie={inputEncoding}` (3认同)
  • 对我没有帮助。安装程序已设法使用指向 feed.sonic-search.com 的链接覆盖 google:baseURL 变量,该链接重定向到 search.snapdo.com。试图找到如何将 google:baseURL 重置为正确的值。谷歌搜索引擎拥有您提供的文本,但注入了错误链接。 (2认同)
  • 这听起来很像恶意软件。尝试使用恶意软件字节运行扫描以杀死任何感染。 (2认同)

Bra*_*ton 8

转到 Chrome → 设置,然后单击Manage Search Engines按钮。

添加新的搜索引擎

  • 姓名: Google
  • 关键词: google.com
  • 网址: {google:baseURL}search?q=%s&{google:RLZ}{google:acceptedSuggestion}{google:originalQueryForSuggestion}{google:assistedQueryStats}{google:searchFieldtrialParameter}{google:searchClient}{google:sourceId}{google:instantExtendedEnabledParameter}ie={inputEncoding}

这是我在 Chrome 中设置的。


xco*_*rat 5

(我来自webapps.SA 的回答)

如果您只想永久使用 google.com(或任何其他固定 URL)作为搜索引擎,那么上述两种方法可能不是您要找的。/ncr添加另一个搜索引擎都会破坏默认的实时搜索功能。尝试这个,

  1. 关闭所有 Chrome/chromium 浏览器,
  2. 转到用户数据文件夹

    • Windows:(users\username\appdata\local\google\chromium\User Data或类似的 - 如果这是错误的,请编辑)
    • Linux: ~/.config/chromium/Default
  3. 打开名为LocalState(windows) 或Preferences在 vim/notepad 中的文件,然后更改,

    • last_known_google_url
    • last_prompted_google_url 到您想要的任何 baseURL。前任。"https://www.google.com/"
  4. 节省。

有关更多信息,请查看这个旧的错误报告

  • 在 OS X 上,您可以在 `~/Library/Application Support/Google/Chrome/Default/Preferences` 中找到 `last_known_google_url` (2认同)