datamints Google Search Extender

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

datamints Google Search Extenderとは何ですか?

datamints Google Search Extenderはdatamints GmbHによって開発されたChromeの拡張機能で、その主な機能は「Shows search results of custom search engine on Google search results page; only works on google.com and google.de.」です。

拡張機能のスクリーンショット

screenshot

datamints Google Search Extender拡張機能のCRXファイルをダウンロード

datamints Google Search Extender拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 datamints Google Search Extender datamints Google Search Extender
ID pfpokmcdncinakklldgppfaihbefbjga
公式URL https://chromewebstore.google.com/detail/datamints-google-search-e/pfpokmcdncinakklldgppfaihbefbjga
説明 Shows search results of custom search engine on Google search results page; only works on google.com and google.de.
ファイルサイズ 19.95 KB
インストール数 47
現在のバージョン 1.0.3
最終更新日 2021-10-25
公開日 2017-08-10
評価 5.00/5 合計 1 レビュー
開発者 datamints GmbH
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL http://www.datamints.com/datenschutz.html
対応言語 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\/*"
    ]
}