npmhub
Explore npm dependencies on GitHub repos
Cos'è npmhub?
npmhub è un'estensione di Chrome sviluppata da npmhub, e la sua funzione principale è "Explore npm dependencies on GitHub repos".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione npmhub
Scarica i file di estensione npmhub 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
On every GitHub repository or folder with a package.json file, scroll to the bottom of the page to see a list of its npm dependencies and their descriptions.
npmhub also adds convenient links to:
- the package.json file
- npmjs.com
- RunKit to test the package
- BundlePhobia to see the package size when bundled
- PackagePhobia to see the package size when installed
- NPMGraph to explore the sub-dependencies
- UNPKG to see the exact contents published to npm
GitHub Enterprise is also supported by right-clicking on npmhub's icon in the toolbar and selecting Enable npmhub on this domain. Informazioni di Base sull'Estensione
| Nome | |
| ID | kbbbjimdjbjclaebffknlabpogocablj |
| URL Ufficiale | https://chromewebstore.google.com/detail/npmhub/kbbbjimdjbjclaebffknlabpogocablj |
| Descrizione | Explore npm dependencies on GitHub repos |
| Dimensione del File | 33.51 KB |
| Conteggio Installazioni | 2,158 |
| Versione Corrente | 2023.12.20 |
| Ultimo Aggiornamento | 2023-12-20 |
| Data di Pubblicazione | 2020-03-30 |
| Valutazione | 4.53/5 Totale 19 Valutazioni |
| Sviluppatore | npmhub |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/npmhub/npmhub |
| URL della Pagina della Politica sulla Privacy | https://github.com/npmhub/npmhub/blob/main/privacy-policy.md |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "npmhub",
"version": "2023.12.20",
"manifest_version": 2,
"description": "Explore npm dependencies on GitHub repos",
"author": "Zeke Sikelianos, Federico Brigante",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"64": "icons\/icon64.png",
"128": "icons\/icon128.png",
"256": "icons\/icon256.png"
},
"browser_action": {
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"64": "icons\/icon64.png",
"128": "icons\/icon128.png",
"256": "icons\/icon256.png"
}
},
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "90.0"
}
},
"minimum_chrome_version": "90.0",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"https:\/\/registry.npmjs.org\/",
"contextMenus",
"activeTab"
],
"optional_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"web_accessible_resources": [
"background.js",
"manifest.json",
"npmhub.css",
"npmhub.js",
"icons\/icon128.png",
"icons\/icon16.png",
"icons\/icon256.png",
"icons\/icon32.png",
"icons\/icon48.png",
"icons\/icon64.png"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"npmhub.js"
],
"css": [
"npmhub.css"
]
}
]
} | |