Github quarterly contributions
Adds a quarterly stats button on a user's landing page
什么是Github quarterly contributions?
Github quarterly contributions是由Eric Bidelman开发的Chrome扩展程序,该扩展的主要功能是“Adds a quarterly stats button on a user's landing page”。
扩展截图
下载Github quarterly contributions扩展crx文件
下载Github quarterly contributions扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds a "Add previous quarter" button to a user's Github landing page (see screenshot). Pressing this button fetches the last quarter worth of commits, prs, and issues for the user. Subsequent presses goes back additional quarters.
Note: this will include private commits/prs/issues if you are the current logged in user. Viewing someone else's page will only return their public activity.
Source: https://github.com/ebidel/github-quarterly-stats 扩展基本信息
| 名称 | |
| ID | cinfjnlgpbolahlckdnljecnaagecaen |
| 官方URL | https://chromewebstore.google.com/detail/github-quarterly-contribu/cinfjnlgpbolahlckdnljecnaagecaen |
| 简介 | Adds a quarterly stats button on a user's landing page |
| 文件大小 | 670 KB |
| 安装次数 | 27 |
| 当前版本 | 0.0.3 |
| 更新时间 | 2014-09-29 |
| 上架时间 | 2014-09-29 |
| 开发者 | Eric Bidelman |
| 付费类型 | free |
| 扩展官网 | https://github.com/ebidel/github-quarterly-stats |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github quarterly contributions",
"version": "0.0.3",
"manifest_version": 2,
"description": "Adds a quarterly stats button on a user's landing page",
"icons": {
"16": "icons\/githubicon.png",
"48": "icons\/githubicon.png",
"128": "icons\/githubicon.png"
},
"permissions": [
"https:\/\/github.com\/*",
"activeTab"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"src\/content.js",
"bower_components\/moment\/min\/moment.min.js"
]
}
]
} | |