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 - это расширение Chrome, разработанное Stanford HCI Research Group, и его основная функция - "Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents".

Скачать файл CRX расширения Do not automatically add other search engines

Скачайте файлы расширений 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"
        }
    ]
}