datamints Google Search Extender

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

Co je datamints Google Search Extender?

datamints Google Search Extender je rozšíření Chrome vyvinuté datamints GmbH, a jeho hlavní funkcí je „Shows search results of custom search engine on Google search results page; only works on google.com and google.de.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření datamints Google Search Extender

Stáhněte si soubory rozšíření datamints Google Search Extender ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název datamints Google Search Extender datamints Google Search Extender
ID pfpokmcdncinakklldgppfaihbefbjga
Oficiální URL https://chromewebstore.google.com/detail/datamints-google-search-e/pfpokmcdncinakklldgppfaihbefbjga
Popis Shows search results of custom search engine on Google search results page; only works on google.com and google.de.
Velikost souboru 19.95 KB
Počet instalací 47
Aktuální Verze 1.0.3
Poslední Aktualizace 2021-10-25
Datum Vydání 2017-08-10
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář datamints GmbH
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí http://www.datamints.com/datenschutz.html
Podporované Jazyky 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\/*"
    ]
}