github npm stats

Displays npm package stats on GitHub

什么是github npm stats?

github npm stats是由katranci开发的Chrome扩展程序,该扩展的主要功能是“Displays npm package stats on GitHub”。

扩展截图

screenshot
screenshot

下载github npm stats扩展crx文件

下载github npm stats扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
            ]
        }
    ]
}