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 là gì?
datamints Google Search Extender là một tiện ích mở rộng Chrome được phát triển bởi datamints GmbH, và tính năng chính của nó là "Shows search results of custom search engine on Google search results page; only works on google.com and google.de.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng datamints Google Search Extender
Tải xuống các tệp mở rộng datamints Google Search Extender dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | datamints Google Search Extender |
ID | pfpokmcdncinakklldgppfaihbefbjga |
URL Chính Thức | https://chromewebstore.google.com/detail/datamints-google-search-e/pfpokmcdncinakklldgppfaihbefbjga |
Mô tả | Shows search results of custom search engine on Google search results page; only works on google.com and google.de. |
Kích Thước Tệp | 19.95 KB |
Số Lần Cài Đặt | 47 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2021-10-25 |
Ngày Phát Hành | 2017-08-10 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | datamints GmbH |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | http://www.datamints.com/datenschutz.html |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |