Do not automatically add other search engines

Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents

什么是Do not automatically add other search engines?

Do not automatically add other search engines是由Stanford HCI Research Group开发的Chrome扩展程序,该扩展的主要功能是“Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents”。

下载Do not automatically add other search engines扩展crx文件

下载Do not automatically add other search engines扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Chrome automatically adds sites to your list of custom search engines list when you visit them. This extension prevents this behavior.

Code: https://github.com/gkovacs/do-not-automatically-add-other-search-engines

Note that Chrome uses a number of heuristics to add search engines, and while this extension prevents the most common approach, we cannot prevent all of them. Hence, some search engines may still get through. To remove added search engines (in this case, those that contain '.' in the keyword), navigate to chrome://settings/searchEngines and run the following code a few times (via the developer console, Command-Option-J or Ctrl-Shift-J)

for (var x of document.querySelectorAll('.keyword-column')) {
  if (x.innerText.indexOf('.') != -1) {
    x.parentNode.parentNode.childNodes[1].click()
  }
}                    

扩展基本信息

名称 Do not automatically add other search engines Do not automatically add other search engines
ID lejpfpoaicennngnbmkhgagndoiijjip
官方URL https://chromewebstore.google.com/detail/do-not-automatically-add/lejpfpoaicennngnbmkhgagndoiijjip
简介 Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents
文件大小 3.21 KB
安装次数 34
当前版本 1.0.1
更新时间 2016-12-22
上架时间 2016-12-21
评分 3.00/5 共1次评分
开发者 Stanford HCI Research Group
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://github.com/habitlab/habitlab/wiki/Privacy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Do not automatically add other search engines",
    "short_name": "nosearchengines",
    "description": "Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents",
    "version": "1.0.1",
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "contentscript.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ]
}