Don't add custom search engines

Prevent Google Chrome from auto-adding custom search engines

Co to jest Don't add custom search engines?

Don't add custom search engines to rozszerzenie Chrome opracowane przez Greg Sadetsky, a jego główną funkcją jest „Prevent Google Chrome from auto-adding custom search engines”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Don't add custom search engines

Pobierz pliki rozszerzeń Don't add custom search engines w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Don't add custom search engines Don't add custom search engines
ID dnodlcololidkjgbpeoleabmkocdhacc
Oficjalny URL https://chromewebstore.google.com/detail/dont-add-custom-search-en/dnodlcololidkjgbpeoleabmkocdhacc
Opis Prevent Google Chrome from auto-adding custom search engines
Rozmiar pliku 7.52 KB
Liczba instalacji 24,036
Aktualna Wersja 0.0.6
Ostatnia Aktualizacja 2019-07-22
Data Publikacji 2019-07-22
Ocena 3.58/5 Łącznie 83 Oceny
Deweloper Greg Sadetsky
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://www.dictation.tools/privacy.html
Obsługiwane Języki 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:\/\/*\/*"
    ]
}