Do not automatically add other search engines

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

Vad är Do not automatically add other search engines?

Do not automatically add other search engines är en Chrome-tillägg utvecklad av Stanford HCI Research Group, och dess huvudfunktion är "Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents".

Ladda ner Do not automatically add other search engines-förlängningens CRX-fil

Ladda ner Do not automatically add other search engines-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Do not automatically add other search engines Do not automatically add other search engines
ID lejpfpoaicennngnbmkhgagndoiijjip
Officiell webbadress https://chromewebstore.google.com/detail/do-not-automatically-add/lejpfpoaicennngnbmkhgagndoiijjip
Beskrivning Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents
Filstorlek 3.21 KB
Antal Installationer 34
Aktuell Version 1.0.1
Senast Uppdaterad 2016-12-22
Publiceringsdatum 2016-12-21
Betyg 3.00/5 Totalt 1 Betyg
Utvecklare Stanford HCI Research Group
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://github.com/habitlab/habitlab/wiki/Privacy
Stödda Språk 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"
        }
    ]
}