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
Eメール [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"
        }
    ]
}