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 |
官方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\/*" ] } |