NPM Package Search

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

Cos'è NPM Package Search?

NPM Package Search è un'estensione di Chrome sviluppata da Bryan Clark, e la sua funzione principale è "To use, type 'npm' plus your search term into the url bar.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione NPM Package Search

Scarica i file di estensione NPM Package Search in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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'.                    

Informazioni di Base sull'Estensione

Nome NPM Package Search NPM Package Search
ID opeblfahbafpdgaiadfdcefgdhegdnch
URL Ufficiale https://chromewebstore.google.com/detail/npm-package-search/opeblfahbafpdgaiadfdcefgdhegdnch
Descrizione To use, type 'npm' plus your search term into the url bar.
Dimensione del File 6.15 KB
Conteggio Installazioni 276
Versione Corrente 1.0
Ultimo Aggiornamento 2017-04-19
Data di Pubblicazione 2017-03-31
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Bryan Clark
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/clarkbw/npm-package-search
URL della Pagina di Aiuto https://github.com/clarkbw/npm-package-search/issues/
Lingue Supportate 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\/"
    ]
}