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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย datamints GmbH และคุณลักษณะหลักของมันคือ "Shows search results of custom search engine on Google search results page; only works on google.com and google.de."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย datamints Google Search Extender

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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\/*"
    ]
}