Don't add custom search engines

Prevent Google Chrome from auto-adding custom search engines

Τι είναι το Don't add custom search engines;

Το Don't add custom search engines είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Greg Sadetsky, και η κύρια λειτουργία του είναι "Prevent Google Chrome from auto-adding custom search engines".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Don't add custom search engines

Λήψη αρχείων επέκτασης Don't add custom search engines σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Don't add custom search engines Don't add custom search engines
ID dnodlcololidkjgbpeoleabmkocdhacc
Επίσημο URL https://chromewebstore.google.com/detail/dont-add-custom-search-en/dnodlcololidkjgbpeoleabmkocdhacc
Περιγραφή Prevent Google Chrome from auto-adding custom search engines
Μέγεθος Αρχείου 7.52 KB
Αριθμός Εγκαταστάσεων 24,036
Τρέχουσα Έκδοση 0.0.6
Τελευταία Ενημέρωση 2019-07-22
Ημερομηνία Δημοσίευσης 2019-07-22
Αξιολόγηση 3.58/5 Συνολικά 83 Αξιολογήσεις
Προγραμματιστής Greg Sadetsky
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://www.dictation.tools/privacy.html
Υποστηριζόμενες Γλώσσες 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:\/\/*\/*"
    ]
}