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
官方網址 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"
        }
    ]
}