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 |
| 官方網址 | 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"
]
}
]
} | |