Don't add custom search engines

Prevent Google Chrome from auto-adding custom search engines

Wat is Don't add custom search engines?

Don't add custom search engines is een Chrome-extensie ontwikkeld door Greg Sadetsky, en de belangrijkste functie is "Prevent Google Chrome from auto-adding custom search engines".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Don't add custom search engines

Download Don't add custom search engines-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Don't add custom search engines Don't add custom search engines
ID dnodlcololidkjgbpeoleabmkocdhacc
Officiële URL https://chromewebstore.google.com/detail/dont-add-custom-search-en/dnodlcololidkjgbpeoleabmkocdhacc
Beschrijving Prevent Google Chrome from auto-adding custom search engines
Bestandsgrootte 7.52 KB
Aantal Installaties 24,036
Huidige Versie 0.0.6
Laatst Bijgewerkt 2019-07-22
Publicatiedatum 2019-07-22
Beoordeling 3.58/5 Totaal 83 Beoordelingen
Ontwikkelaar Greg Sadetsky
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://www.dictation.tools/privacy.html
Ondersteunde Talen 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:\/\/*\/*"
    ]
}