datamints Google Search Extender

Shows search results of custom search engine on Google search results page; only works on google.com and google.de.

O que é datamints Google Search Extender?

datamints Google Search Extender é uma extensão do Chrome desenvolvida por datamints GmbH, e sua principal característica é "Shows search results of custom search engine on Google search results page; only works on google.com and google.de.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão datamints Google Search Extender

Baixe arquivos de extensão datamints Google Search Extender 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

                        This extension allows you to add results from an external search engine (like your company's intranet or your favourite online shop) into the search results page of google.com or google.de.

The extension reacts on your user input on the Google search page, fetches results for your search term from the external search engine and displays them on the right side of the Google search results page.

In the extension's options, you can configure the URL of your search engine as well as CSS code to inject into the Google search results page. You can also enbable a link to your external search engine for more results.                    

Informações Básicas da Extensão

Nome datamints Google Search Extender datamints Google Search Extender
ID pfpokmcdncinakklldgppfaihbefbjga
URL Oficial https://chromewebstore.google.com/detail/datamints-google-search-e/pfpokmcdncinakklldgppfaihbefbjga
Descrição Shows search results of custom search engine on Google search results page; only works on google.com and google.de.
Tamanho do Arquivo 19.95 KB
Contagem de Instalações 47
Versão Atual 1.0.3
Última Atualização 2021-10-25
Data de Publicação 2017-08-10
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor datamints GmbH
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade http://www.datamints.com/datenschutz.html
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "datamints Google Search Extender",
    "description": "Shows search results of custom search engine on Google search results page; only works on google.com and google.de.",
    "version": "1.0.3",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.google.com\/*",
                "https:\/\/*.google.de\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "https:\/\/*.google.com\/*",
        "https:\/\/*.google.de\/*"
    ]
}