npm lookup

Turn selected text on a webpage into an npm package lookup

Cos'è npm lookup?

npm lookup è un'estensione di Chrome sviluppata da Michael Wuergler, e la sua funzione principale è "Turn selected text on a webpage into an npm package lookup".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione npm lookup

Scarica i file di estensione npm lookup 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

                        Turn selected text into a quick npm package lookup.

1. Select some text on a webpage (like on github's javascript source code viewer)
2. Right click
3. Select `Lookup on npmjs.com` from the context menu. 

**BOOM!** you have saved precious time. 

**Pro Tip:** Use this extension all over github's javascript source code viewer. You can select the text inside of `require()` or `import` statements to quickly review the npm profiles of javascript modules.                    

Informazioni di Base sull'Estensione

Nome npm lookup npm lookup
ID ijgbachgpjabdghaghpngjhkmimojodg
URL Ufficiale https://chromewebstore.google.com/detail/npm-lookup/ijgbachgpjabdghaghpngjhkmimojodg
Descrizione Turn selected text on a webpage into an npm package lookup
Dimensione del File 7.16 MB
Conteggio Installazioni 49
Versione Corrente 2.0.0
Ultimo Aggiornamento 2016-01-25
Data di Pubblicazione 2016-01-25
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Michael Wuergler
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/radiovisual/github-npm-lookup
URL della Pagina di Aiuto https://github.com/radiovisual/github-npm-lookup/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "npm lookup",
    "version": "2.0.0",
    "description": "Turn selected text on a webpage into an npm package lookup",
    "homepage_url": "https:\/\/github.com\/radiovisual\/github-npm-lookup",
    "manifest_version": 2,
    "minimum_chrome_version": "38",
    "icons": {
        "128": "media\/icon.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "menu.js"
        ]
    }
}