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.”。
擴展截圖
下載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 |
ID | pfpokmcdncinakklldgppfaihbefbjga |
官方網址 | 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\/*" ] } |