Do not automatically add other search engines

Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents

Cos'è Do not automatically add other search engines?

Do not automatically add other search engines è un'estensione di Chrome sviluppata da Stanford HCI Research Group, e la sua funzione principale è "Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents".

Scarica il file CRX dell'estensione Do not automatically add other search engines

Scarica i file di estensione Do not automatically add other 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

                        Chrome automatically adds sites to your list of custom search engines list when you visit them. This extension prevents this behavior.

Code: https://github.com/gkovacs/do-not-automatically-add-other-search-engines

Note that Chrome uses a number of heuristics to add search engines, and while this extension prevents the most common approach, we cannot prevent all of them. Hence, some search engines may still get through. To remove added search engines (in this case, those that contain '.' in the keyword), navigate to chrome://settings/searchEngines and run the following code a few times (via the developer console, Command-Option-J or Ctrl-Shift-J)

for (var x of document.querySelectorAll('.keyword-column')) {
  if (x.innerText.indexOf('.') != -1) {
    x.parentNode.parentNode.childNodes[1].click()
  }
}                    

Informazioni di Base sull'Estensione

Nome Do not automatically add other search engines Do not automatically add other search engines
ID lejpfpoaicennngnbmkhgagndoiijjip
URL Ufficiale https://chromewebstore.google.com/detail/do-not-automatically-add/lejpfpoaicennngnbmkhgagndoiijjip
Descrizione Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents
Dimensione del File 3.21 KB
Conteggio Installazioni 34
Versione Corrente 1.0.1
Ultimo Aggiornamento 2016-12-22
Data di Pubblicazione 2016-12-21
Valutazione 3.00/5 Totale 1 Valutazioni
Sviluppatore Stanford HCI Research Group
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://github.com/habitlab/habitlab/wiki/Privacy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Do not automatically add other search engines",
    "short_name": "nosearchengines",
    "description": "Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents",
    "version": "1.0.1",
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "contentscript.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ]
}