Do not automatically add other search engines

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

Was ist Do not automatically add other search engines?

Do not automatically add other search engines ist eine Chrome-Erweiterung, die von Stanford HCI Research Group entwickelt wurde, und ihr Hauptmerkmal ist "Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents".

Do not automatically add other search engines-Erweiterungs-CRX-Datei herunterladen

Laden Sie Do not automatically add other search engines-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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()
  }
}                    

Grundlegende Informationen zur Erweiterung

Name Do not automatically add other search engines Do not automatically add other search engines
ID lejpfpoaicennngnbmkhgagndoiijjip
Offizielle URL https://chromewebstore.google.com/detail/do-not-automatically-add/lejpfpoaicennngnbmkhgagndoiijjip
Beschreibung Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents
Dateigröße 3.21 KB
Installationsanzahl 34
Aktuelle Version 1.0.1
Letztes Update 2016-12-22
Veröffentlichungsdatum 2016-12-21
Bewertung 3.00/5 Insgesamt 1 Bewertungen
Entwickler Stanford HCI Research Group
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://github.com/habitlab/habitlab/wiki/Privacy
Unterstützte Sprachen 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"
        }
    ]
}