unpkg Link
Adds a link to unpkg.com for packages on npmjs.org
What is unpkg Link?
unpkg Link is a Chrome extension developed by Andrew Levine, and its main feature is "Adds a link to unpkg.com for packages on npmjs.org".
Extension Screenshots
Download unpkg Link Extension CRX File
Download unpkg Link 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
Want to explore the actual code published for an npm package, without installing it locally? The unpkg.com service makes this a breeze. This extension simply adds a link to packages on npmjs.org, with a quick link to view the code on unpkg.com. Credits go to both the npm team, and Michael Jackson for npmcdn.
Extension Basic Information
Name | ![]() |
ID | edafhclpiklopbghoeoefdajoadokdcb |
Official URL | https://chrome.google.com/webstore/detail/unpkg-link/edafhclpiklopbghoeoefdajoadokdcb |
Description | Adds a link to unpkg.com for packages on npmjs.org |
File Size | 3.25 KB |
Installation Count | 119 |
Current Version | 2.0.0 |
Last Updated | 2018-05-01 |
Publish Date | 2018-05-01 |
Rating | 1.00/5 Total 1 Ratings |
Developer | Andrew Levine |
Payment Type | free |
Extension Website | https://github.com/DrewML/npmcdn-link |
Help Page URL | https://github.com/DrewML/npmcdn-link/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "unpkg Link", "version": "2.0.0", "description": "Adds a link to unpkg.com for packages on npmjs.org", "homepage_url": "https:\/\/github.com\/DrewML\/unpkg-link", "manifest_version": 2, "minimum_chrome_version": "49", "permissions": [ "https:\/\/www.npmjs.com\/package\/*" ], "content_scripts": [ { "run_at": "document_idle", "matches": [ "https:\/\/www.npmjs.com\/package\/*" ], "js": [ "index.js" ] } ] } |