Github quarterly contributions
Adds a quarterly stats button on a user's landing page
Github quarterly contributionsคืออะไร?
Github quarterly contributions เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Eric Bidelman และคุณลักษณะหลักของมันคือ "Adds a quarterly stats button on a user's landing page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github quarterly contributions
ดาวน์โหลดไฟล์ส่วนขยาย 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"
]
}
]
} | |