Don't add custom search engines

Prevent Google Chrome from auto-adding custom search engines

Cos'è Don't add custom search engines?

Don't add custom search engines è un'estensione di Chrome sviluppata da Greg Sadetsky, e la sua funzione principale è "Prevent Google Chrome from auto-adding custom search engines".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Don't add custom search engines

Scarica i file di estensione Don't add custom search engines in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Don't add custom search engines Don't add custom search engines
ID dnodlcololidkjgbpeoleabmkocdhacc
URL Ufficiale https://chromewebstore.google.com/detail/dont-add-custom-search-en/dnodlcololidkjgbpeoleabmkocdhacc
Descrizione Prevent Google Chrome from auto-adding custom search engines
Dimensione del File 7.52 KB
Conteggio Installazioni 24,036
Versione Corrente 0.0.6
Ultimo Aggiornamento 2019-07-22
Data di Pubblicazione 2019-07-22
Valutazione 3.58/5 Totale 83 Valutazioni
Sviluppatore Greg Sadetsky
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://www.dictation.tools/privacy.html
Lingue Supportate 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:\/\/*\/*"
    ]
}