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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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" ] } |