NPM Search & Update

NPM Search & Update, type 'npm' plus your package name into the url bar

O que é NPM Search & Update?

NPM Search & Update é uma extensão do Chrome desenvolvida por ManualsRepo.com, e sua principal característica é "NPM Search & Update, type 'npm' plus your package name into the url bar".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão NPM Search & Update

Baixe arquivos de extensão NPM Search & Update no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        NPM Search & Update providing a search for NodeJS packages and monitor changes from the npm registry

Features:

★ Help developer search dependencies at npmjs.com quickly with short typing.
eg: Type 'npm' plus your package name into the url bar and enter. It's take you go to npmjs search page.

★ Providing a search for package dependency and monitor changes from the npm registry.

★ Custom alarm notifications

★ Notify you when dependencies update

#Changelog

VERSION 0.0.9, 2020-01-25

- Fix duplicate action button on npmjs site                    

Informações Básicas da Extensão

Nome NPM Search & Update NPM Search & Update
ID kagpoplamlmaonpddimnnigiojimihnh
URL Oficial https://chrome.google.com/webstore/detail/npm-search-update/kagpoplamlmaonpddimnnigiojimihnh
Descrição NPM Search & Update, type 'npm' plus your package name into the url bar
Tamanho do Arquivo 31.2 KB
Contagem de Instalações 126
Versão Atual 0.0.9
Última Atualização 2020-01-27
Data de Publicação 2020-01-27
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor ManualsRepo.com
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://docs.google.com/document/d/1Z1s5lAe0i8UuhcU0s9DVsm3gVjYlyaLNUzRYsLmzGFg/edit?usp=sharing
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NPM Search & Update",
    "short_name": "NPM Search",
    "icons": {
        "16": "icons\/npm-16.png",
        "64": "icons\/npm-64.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.npmjs.com\/package\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "browser_action": {
        "default_title": "NPM Search"
    },
    "omnibox": {
        "keyword": "npm"
    },
    "manifest_version": 2,
    "permissions": [
        "*:\/\/*\/*",
        "storage",
        "alarms",
        "notifications"
    ],
    "author": "NPM Search",
    "version": "0.0.9",
    "description": "NPM Search & Update, type 'npm' plus your package name into the url bar",
    "homepage_url": "https:\/\/www.npmjs.com\/"
}