unpkg Link
Adds a link to unpkg.com for packages on npmjs.org
Was ist unpkg Link?
unpkg Link ist eine Chrome-Erweiterung, die von Andrew Levine entwickelt wurde, und ihr Hauptmerkmal ist "Adds a link to unpkg.com for packages on npmjs.org".
Erweiterungsscreenshots
unpkg Link-Erweiterungs-CRX-Datei herunterladen
Laden Sie unpkg Link-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | ![]() |
ID | edafhclpiklopbghoeoefdajoadokdcb |
Offizielle URL | https://chrome.google.com/webstore/detail/unpkg-link/edafhclpiklopbghoeoefdajoadokdcb |
Beschreibung | Adds a link to unpkg.com for packages on npmjs.org |
Dateigröße | 3.25 KB |
Installationsanzahl | 119 |
Aktuelle Version | 2.0.0 |
Letztes Update | 2018-05-01 |
Veröffentlichungsdatum | 2018-05-01 |
Bewertung | 1.00/5 Insgesamt 1 Bewertungen |
Entwickler | Andrew Levine |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/DrewML/npmcdn-link |
Hilfeseite URL | https://github.com/DrewML/npmcdn-link/issues |
Unterstützte Sprachen | 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" ] } ] } |