github npm stats

Displays npm package stats on GitHub

What is github npm stats?

github npm stats is a Chrome extension developed by katranci, and its main feature is "Displays npm package stats on GitHub".

Extension Screenshots

screenshot
screenshot

Download github npm stats Extension CRX File

Download github npm stats extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name github npm stats github npm stats
ID oomfflokggoffaiagenekchfnpighcef
Official URL https://chromewebstore.google.com/detail/github-npm-stats/oomfflokggoffaiagenekchfnpighcef
Description Displays npm package stats on GitHub
File Size 65.86 KB
Installation Count 621
Current Version 1.3.4
Last Updated 2020-05-31
Publish Date 2020-05-31
Rating 5.00/5 Total 4 Ratings
Developer katranci
Email [email protected]
Payment Type free
Extension Website https://github.com/katranci/github-npm-stats
Help Page URL https://github.com/katranci/github-npm-stats/issues
Supported Languages 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"
            ]
        }
    ]
}