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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة datamints Google Search Extender
قم بتنزيل ملفات الامتداد datamints Google Search Extender بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة سياسة الخصوصية | 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\/*" ] } |