Advanced Search
Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window.
ما هو Advanced Search؟
Advanced Search هو إضافة Chrome تم تطويرها بواسطة Mac Gainor، والميزة الرئيسية لها هي "Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Advanced Search
قم بتنزيل ملفات الامتداد Advanced Search بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Adds a simple interface to write precise search queries for google, google-scholar, wikipedia, and youtube.
After installing, use `Ctrl+Shift+F` to toggle the search window.
Try `Tab` and `Shift+Tab` to manipulate inputs.
Try `UpArrow` and `DownArrow` to navigate the selected search engine.
Use `Enter` to submit your search.
If the extension doesn't work immediately, try restarting your browser. معلومات أساسية عن التمديد
| الاسم | |
| ID | elgfhefgbaekbebmlmdhildnlhinmnak |
| عنوان URL الرسمي | https://chrome.google.com/webstore/detail/advanced-search/elgfhefgbaekbebmlmdhildnlhinmnak |
| الوصف | Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window. |
| حجم الملف | 150 KB |
| عدد التثبيتات | 577 |
| النسخة الحالية | 0.1.3 |
| آخر تحديث | 2017-11-05 |
| تاريخ النشر | 2017-11-05 |
| تقييم | 4.50/5 مجموع تقييمات 8 |
| المطور | Mac Gainor |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/mac-s-g/chrome-advanced-search |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Advanced Search",
"description": "Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window.",
"version": "0.1.3",
"icons": {
"16": "images\/search-icon-16.png",
"48": "images\/search-icon-48.png",
"128": "images\/search-icon-128.png"
},
"browser_action": {
"default_title": "Open Advanced Search"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"css": [
"style\/content.css"
],
"js": [
"js\/dependencies\/[email protected]",
"js\/content.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"js\/background.js"
]
},
"permissions": [
"activeTab",
"storage"
],
"web_accessible_resources": [
"style\/content.css",
"style\/fonts\/Roboto-Regular.ttf",
"images\/google-logo-scaled.png",
"images\/wikipedia-logo-scaled.png",
"images\/youtube-logo-scaled.png",
"images\/google-scholar-logo-scaled.png"
]
} | |