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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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\/*"
    ]
}