npmhub
Explore npm dependencies on GitHub repos
npmhubとは何ですか?
npmhubはnpmhubによって開発されたChromeの拡張機能で、その主な機能は「Explore npm dependencies on GitHub repos」です。
拡張機能のスクリーンショット
npmhub拡張機能のCRXファイルをダウンロード
npmhub拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| ID | kbbbjimdjbjclaebffknlabpogocablj |
| 公式URL | https://chromewebstore.google.com/detail/npmhub/kbbbjimdjbjclaebffknlabpogocablj |
| 説明 | Explore npm dependencies on GitHub repos |
| ファイルサイズ | 33.51 KB |
| インストール数 | 2,158 |
| 現在のバージョン | 2023.12.20 |
| 最終更新日 | 2023-12-20 |
| 公開日 | 2020-03-30 |
| 評価 | 4.53/5 合計 19 レビュー |
| 開発者 | npmhub |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/npmhub/npmhub |
| プライバシーポリシーページのURL | https://github.com/npmhub/npmhub/blob/main/privacy-policy.md |
| 対応言語 | 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"
]
}
]
} | |