github npm stats

Displays npm package stats on GitHub

github npm stats क्या है?

github npm stats katranci द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays npm package stats on GitHub"।

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

screenshot
screenshot

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

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

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

                        About Permissions
==============
- Data access for github.com is required to access package.json file of the underlying project
- Data access for npmjs.org is required to access npm package details
- Storage is required to cache github and npm api responses

Source Code
==========
You can view the source code of this extension on https://github.com/katranci/github-npm-stats                    

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

नाम github npm stats github npm stats
ID oomfflokggoffaiagenekchfnpighcef
आधिकारिक URL https://chromewebstore.google.com/detail/github-npm-stats/oomfflokggoffaiagenekchfnpighcef
विवरण Displays npm package stats on GitHub
फ़ाइल का आकार 65.86 KB
स्थापना संख्या 621
वर्तमान संस्करण 1.3.4
अंतिम अपडेट 2020-05-31
प्रकाशन तिथि 2020-05-31
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर katranci
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/katranci/github-npm-stats
सहायता पृष्ठ URL https://github.com/katranci/github-npm-stats/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "github npm stats",
    "version": "1.3.4",
    "manifest_version": 2,
    "description": "Displays npm package stats on GitHub",
    "author": "Ahmet Katranc\u0131 ",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "https:\/\/*.npmjs.org\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "chart.min.js",
                "bundle.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}