PHP Search
Adds support to the omnibox to search the PHP reference docs.
Что такое PHP Search?
PHP Search - это расширение Chrome, разработанное xeno.be, и его основная функция - "Adds support to the omnibox to search the PHP reference docs.".
Снимки экрана расширения
Скачать файл CRX расширения PHP Search
Скачайте файлы расширений PHP Search в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Use this omnibox plugin to directly search the online PHP help. Simply type 'php ' to start your search, then the name of whatever class you are looking for help with, to take you straight to the relevant page in the online documentation. This extension will try and find the mirror site nearest to you. You can change this site in the extensions options page: either through Chrome's extensions page or by typing 'php options' in the omnibox. Source from: https://github.com/mpress/developer-omniboxes-for-chrome
Основная информация о расширении
Название | |
ID | mfpdmlochkjkogiihgjlnlagdigapnfn |
Официальный URL | https://chrome.google.com/webstore/detail/php-search/mfpdmlochkjkogiihgjlnlagdigapnfn |
Описание | Adds support to the omnibox to search the PHP reference docs. |
Размер файла | 112 KB |
Количество установок | 286 |
Текущая Версия | 3.0.1 |
Последнее Обновление | 2015-10-09 |
Дата публикации | 2015-10-09 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | xeno.be |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "PHP Search", "manifest_version": 2, "description": "Adds support to the omnibox to search the PHP reference docs.", "background": { "scripts": [ "String.js", "index.js", "getMirror.js", "background.js" ] }, "options_page": "options.html", "icons": { "128": "icons\/icon128.png", "32": "icons\/icon32.png", "16": "icons\/icon16.png" }, "omnibox": { "keyword": "php" }, "permissions": [ "tabs", "http:\/\/www.php.net\/" ], "version": "3.0.1" } |