npm lookup

Turn selected text on a webpage into an npm package lookup

What is npm lookup?

npm lookup is a Chrome extension developed by Michael Wuergler, and its main feature is "Turn selected text on a webpage into an npm package lookup".

Extension Screenshots

screenshot

Download npm lookup Extension CRX File

Download npm lookup extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name npm lookup npm lookup
ID ijgbachgpjabdghaghpngjhkmimojodg
Official URL https://chromewebstore.google.com/detail/npm-lookup/ijgbachgpjabdghaghpngjhkmimojodg
Description Turn selected text on a webpage into an npm package lookup
File Size 7.16 MB
Installation Count 49
Current Version 2.0.0
Last Updated 2016-01-25
Publish Date 2016-01-25
Rating 5.00/5 Total 2 Ratings
Developer Michael Wuergler
Payment Type free
Extension Website https://github.com/radiovisual/github-npm-lookup
Help Page URL https://github.com/radiovisual/github-npm-lookup/issues
Supported Languages 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"
        ]
    }
}