NPM Package Search

To use, type 'npm' plus your search term into the url bar.

Что такое NPM Package Search?

NPM Package Search - это расширение Chrome, разработанное Bryan Clark, и его основная функция - "To use, type 'npm' plus your search term into the url bar.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения NPM Package Search

Скачайте файлы расширений NPM Package Search в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        JavaScript developer get a shortcut to searching NPM for packages by typing the text 'npm' and then the search term.  Like 'npm which' would search the NPM registry for packages with the name 'which'.                    

Основная информация о расширении

Название NPM Package Search NPM Package Search
ID opeblfahbafpdgaiadfdcefgdhegdnch
Официальный URL https://chromewebstore.google.com/detail/npm-package-search/opeblfahbafpdgaiadfdcefgdhegdnch
Описание To use, type 'npm' plus your search term into the url bar.
Размер файла 6.15 KB
Количество установок 276
Текущая Версия 1.0
Последнее Обновление 2017-04-19
Дата публикации 2017-03-31
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Bryan Clark
Тип оплаты free
Официальный сайт расширения https://github.com/clarkbw/npm-package-search
URL страницы помощи https://github.com/clarkbw/npm-package-search/issues/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NPM Package Search",
    "description": "To use, type 'npm' plus your search term into the url bar.",
    "homepage_url": "https:\/\/github.com\/clarkbw\/npm-package-search",
    "version": "1.0",
    "applications": {
        "gecko": {
            "strict_min_version": "52.0a1",
            "id": "[email protected]"
        }
    },
    "icons": {
        "16": "icons\/npm-16.png",
        "64": "icons\/npm-64.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "omnibox": {
        "keyword": "npm"
    },
    "manifest_version": 2,
    "permissions": [
        "https:\/\/registry.npmjs.org\/"
    ]
}