Github Pull Request Counter
A chrome extension to remove mental load when working with pull requests.
Github Pull Request Counterคืออะไร?
Github Pull Request Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Renuo และคุณลักษณะหลักของมันคือ "A chrome extension to remove mental load when working with pull requests."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Pull Request Counter
ดาวน์โหลดไฟล์ส่วนขยาย Github Pull Request Counter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Maintains a list of GitHub pull request which need action, such as review or merging. This removes mental load and decreases the amount of time between reviews.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Github Pull Request Counter |
ID | eeejbcmnmgogpkgeinlbchoafjjbegmi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-pull-request-count/eeejbcmnmgogpkgeinlbchoafjjbegmi |
คำอธิบาย | A chrome extension to remove mental load when working with pull requests. |
ขนาดไฟล์ | 68.37 KB |
จำนวนการติดตั้ง | 81 |
เวอร์ชันปัจจุบัน | 1.0.10 |
อัปเดตครั้งล่าสุด | 2023-06-24 |
วันที่เผยแพร่ | 2021-08-02 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Renuo |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/renuo/github-pull-request-counter |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "author": "Renuo AG", "name": "Github Pull Request Counter", "description": "A chrome extension to remove mental load when working with pull requests.", "version": "1.0.10", "action": { "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "permissions": [ "alarms", "storage" ], "background": { "service_worker": "background.js" }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" } } |