Github Activity Checker

Checks the activity level of GitHub projects

什么是Github Activity Checker?

Github Activity Checker是由Florian Laurent开发的Chrome扩展程序,该扩展的主要功能是“Checks the activity level of GitHub projects”。

扩展截图

screenshot

下载Github Activity Checker扩展crx文件

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

扩展使用说明

                        This extension adds a clear activity indicator when browsing GitHub project pages.

It's often unclear when looking at a GitHub project how much *recent activity* has occurred. 

You can check the activity graph, but it's not visible from the project main page and takes times to load.

Sometimes you can see that some files have been recently modified, but it's not obvious if it comes from active development or someone doing superficial changes.

This extension shows an indicator based on a clear metric: the number of commits done in the past 4 weeks. You can see the precise number of commits by hovering the "activity" label, and you can access the full activity graph by clicking on it.

Source (Apache 2.0):
https://github.com/MasterScrat/GithubActivityChecker                    

扩展基本信息

名称 Github Activity Checker Github Activity Checker
ID agebcpekpbkaibjghgakombjjkefmcol
官方URL https://chrome.google.com/webstore/detail/github-activity-checker/agebcpekpbkaibjghgakombjjkefmcol
简介 Checks the activity level of GitHub projects
文件大小 93.82 KB
安装次数 34
当前版本 0.0.3
更新时间 2019-03-08
上架时间 2019-03-08
评分 5.00/5 共3次评分
开发者 Florian Laurent
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Activity Checker",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Checks the activity level of GitHub projects",
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "https:\/\/github.com\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*",
                "http:\/\/github.com\/*\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/lodash.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}