Haskell inspector
Adds an '>>' omnibox command and find results from hoogle, hackage
Что такое Haskell inspector?
Haskell inspector - это расширение Chrome, разработанное Unknown, и его основная функция - "Adds an '>>' omnibox command and find results from hoogle, hackage".
Снимки экрана расширения
Скачать файл CRX расширения Haskell inspector
Скачайте файлы расширений Haskell inspector в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A simple plugin to help you search haskell methods or packages. (Using hoogle and hackage)
In your search bar, tap ">>", and then tab to search content. Основная информация о расширении
| Название | |
| ID | fkopdhccgfgifcpkgndkohcpllhelhph |
| Официальный URL | https://chromewebstore.google.com/detail/haskell-inspector/fkopdhccgfgifcpkgndkohcpllhelhph |
| Описание | Adds an '>>' omnibox command and find results from hoogle, hackage |
| Размер файла | 39.01 KB |
| Количество установок | 127 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2014-03-28 |
| Дата публикации | 2014-03-28 |
| Рейтинг | 4.00/5 Всего 8 оценок |
| Разработчик | Unknown |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Haskell inspector",
"description": "Adds an '>>' omnibox command and find results from hoogle, hackage",
"version": "1.0",
"author": "Gonthier Olivier",
"permissions": [
"http:\/\/haskell.org\/*",
"http:\/\/*.haskell.org\/*"
],
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"128": "icons\/128.png"
},
"omnibox": {
"keyword": ">>"
},
"background": {
"scripts": [
"background.js",
"jquery-2.1.0.min.js"
]
}
} | |