Don't add custom search engines

Prevent Google Chrome from auto-adding custom search engines

Что такое Don't add custom search engines?

Don't add custom search engines - это расширение Chrome, разработанное Greg Sadetsky, и его основная функция - "Prevent Google Chrome from auto-adding custom search engines".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Don't add custom search engines

Скачайте файлы расширений Don't add custom search engines в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Stop websites from adding custom search engines with this simple extension.

This extension does not connect to any third-party servers.

Its source code is available here:
https://github.com/gregsadetsky/chrome-dont-add-custom-search-engines

====

Updated July 22nd, 2019
- support for more sites (including DuckDuckGo)
- bug fixes

Updated June 16th, 2018
- support for more sites
- bug fixes                    

Основная информация о расширении

Название Don't add custom search engines Don't add custom search engines
ID dnodlcololidkjgbpeoleabmkocdhacc
Официальный URL https://chromewebstore.google.com/detail/dont-add-custom-search-en/dnodlcololidkjgbpeoleabmkocdhacc
Описание Prevent Google Chrome from auto-adding custom search engines
Размер файла 7.52 KB
Количество установок 24,036
Текущая Версия 0.0.6
Последнее Обновление 2019-07-22
Дата публикации 2019-07-22
Рейтинг 3.58/5 Всего 83 оценок
Разработчик Greg Sadetsky
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://www.dictation.tools/privacy.html
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Greg Sadetsky et al.",
    "manifest_version": 2,
    "name": "Don't add custom search engines",
    "version": "0.0.6",
    "description": "Prevent Google Chrome from auto-adding custom search engines",
    "homepage_url": "https:\/\/github.com\/gregsadetsky\/chrome-dont-add-custom-search-engines",
    "minimum_chrome_version": "49.0.0.0",
    "offline_enabled": true,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "icons": {
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_title": "Don't add custom search engines",
        "default_icon": "icon-64.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}