Don't add custom search engines

Prevent Google Chrome from auto-adding custom search engines

Hvad er Don't add custom search engines?

Don't add custom search engines er en Chrome-udvidelse udviklet af Greg Sadetsky, og dens hovedfunktion er "Prevent Google Chrome from auto-adding custom search engines".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Don't add custom search engines-udvidelses-CRX-fil

Download Don't add custom search engines-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Don't add custom search engines Don't add custom search engines
ID dnodlcololidkjgbpeoleabmkocdhacc
Officiel URL https://chromewebstore.google.com/detail/dont-add-custom-search-en/dnodlcololidkjgbpeoleabmkocdhacc
Beskrivelse Prevent Google Chrome from auto-adding custom search engines
Filstørrelse 7.52 KB
Antal Installationer 24,036
Nuværende Version 0.0.6
Senest Opdateret 2019-07-22
Udgivelsesdato 2019-07-22
Bedømmelse 3.58/5 Samlet 83 Bedømmelser
Udvikler Greg Sadetsky
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://www.dictation.tools/privacy.html
Understøttede Sprog 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:\/\/*\/*"
    ]
}