Don't add custom search engines

Prevent Google Chrome from auto-adding custom search engines

Qu'est-ce que Don't add custom search engines ?

Don't add custom search engines est une extension Chrome développée par Greg Sadetsky, et sa fonction principale est "Prevent Google Chrome from auto-adding custom search engines".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Don't add custom search engines

Téléchargez les fichiers d'extension Don't add custom search engines au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Don't add custom search engines Don't add custom search engines
ID dnodlcololidkjgbpeoleabmkocdhacc
URL Officiel https://chromewebstore.google.com/detail/dont-add-custom-search-en/dnodlcololidkjgbpeoleabmkocdhacc
Description Prevent Google Chrome from auto-adding custom search engines
Taille du Fichier 7.52 KB
Nombre d'Installations 24,036
Version Actuelle 0.0.6
Dernière Mise à Jour 2019-07-22
Date de Publication 2019-07-22
Évaluation 3.58/5 Total 83 Évaluations
Développeur Greg Sadetsky
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://www.dictation.tools/privacy.html
Langues Prises en Charge 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:\/\/*\/*"
    ]
}