npmhub

Explore npm dependencies on GitHub repos

npmhub क्या है?

npmhub npmhub द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Explore npm dependencies on GitHub repos"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में npmhub एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम npmhub npmhub
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
ईमेल [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"
            ]
        }
    ]
}