datamints Google Search Extender
Shows search results of custom search engine on Google search results page; only works on google.com and google.de.
Was ist datamints Google Search Extender?
datamints Google Search Extender ist eine Chrome-Erweiterung, die von datamints GmbH entwickelt wurde, und ihr Hauptmerkmal ist "Shows search results of custom search engine on Google search results page; only works on google.com and google.de.".
Erweiterungsscreenshots
datamints Google Search Extender-Erweiterungs-CRX-Datei herunterladen
Laden Sie datamints Google Search Extender-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | datamints Google Search Extender |
ID | pfpokmcdncinakklldgppfaihbefbjga |
Offizielle URL | https://chromewebstore.google.com/detail/datamints-google-search-e/pfpokmcdncinakklldgppfaihbefbjga |
Beschreibung | Shows search results of custom search engine on Google search results page; only works on google.com and google.de. |
Dateigröße | 19.95 KB |
Installationsanzahl | 47 |
Aktuelle Version | 1.0.3 |
Letztes Update | 2021-10-25 |
Veröffentlichungsdatum | 2017-08-10 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | datamints GmbH |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | http://www.datamints.com/datenschutz.html |
Unterstützte Sprachen | 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\/*" ] } |