Gitlab Contribution Counter
Count GitLab contributions like GitHub
Gitlab Contribution Counterคืออะไร?
Gitlab Contribution Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chigichan24 และคุณลักษณะหลักของมันคือ "Count GitLab contributions like GitHub"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gitlab Contribution Counter
ดาวน์โหลดไฟล์ส่วนขยาย Gitlab Contribution Counter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is a chrome extension which display contributions on GitLab profile page
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Gitlab Contribution Counter |
ID | nkjkidmkdedgpddijnpnbedecdllcije |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gitlab-contribution-count/nkjkidmkdedgpddijnpnbedecdllcije |
คำอธิบาย | Count GitLab contributions like GitHub |
ขนาดไฟล์ | 46.37 KB |
จำนวนการติดตั้ง | 42 |
เวอร์ชันปัจจุบัน | 1.0.0.0 |
อัปเดตครั้งล่าสุด | 2020-12-28 |
วันที่เผยแพร่ | 2020-12-27 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | chigichan24 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/chigichan24/gitlab-contribution-count |
URL หน้าช่วยเหลือ | https://github.com/chigichan24/gitlab-contribution-count/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gitlab Contribution Counter", "version": "1.0.0.0", "description": "Count GitLab contributions like GitHub", "browser_action": { "default_icon": "icon.png" }, "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/gitlab.com\/*" ], "js": [ "app.js" ], "run_at": "document_end", "all_frames": true } ] } |