Do not automatically add other search engines

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

O que é Do not automatically add other search engines?

Do not automatically add other search engines é uma extensão do Chrome desenvolvida por Stanford HCI Research Group, e sua principal característica é "Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents".

Baixar o arquivo CRX da Extensão Do not automatically add other search engines

Baixe arquivos de extensão Do not automatically add other search engines no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Do not automatically add other search engines Do not automatically add other search engines
ID lejpfpoaicennngnbmkhgagndoiijjip
URL Oficial https://chromewebstore.google.com/detail/do-not-automatically-add/lejpfpoaicennngnbmkhgagndoiijjip
Descrição Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents
Tamanho do Arquivo 3.21 KB
Contagem de Instalações 34
Versão Atual 1.0.1
Última Atualização 2016-12-22
Data de Publicação 2016-12-21
Classificação 3.00/5 Total de 1 Avaliações
Desenvolvedor Stanford HCI Research Group
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://github.com/habitlab/habitlab/wiki/Privacy
Idiomas Suportados 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"
        }
    ]
}