Gerrit Monitor
Monitor your CLs on Gerrit
Gerrit Monitorคืออะไร?
Gerrit Monitor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sylvain Defresne และคุณลักษณะหลักของมันคือ "Monitor your CLs on Gerrit"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gerrit Monitor
ดาวน์โหลดไฟล์ส่วนขยาย Gerrit Monitor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Monitor multiple Gerrit instances for CLs requiring attention. Disclaimer: This is not an officially supported Google product. You can configure the Gerrit instances to monitor in the extension option pages, the required permissions will be requested when saving. This list of instances is synchronised if you are logged into Chrome (though you need to give permission to the extension on each Chrome instance). An incoming CL is considered as requiring attention if you have not given at least +1 to it or if the author added a message to the CL more recently than you. An outgoing CL is considered as requiring attention if it has unresolved comments (including yours). An outgoing CL is considered stale if there was no comments in the last 24h (except autogenerated comments). Source code available at https://github.com/sdefresne/gerrit-monitor New in version 1.2.5: - fix to get the extension working on gerrit instance where star: operator has been removed. New in version 1.2.4: - add an option to disable "error" notifications New in version 1.2.3: - fix error reporting in badge and popup New in version 1.2.2: - correctly report authentication errors - reduce how long results are cached See the extension source code for description of older versions.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Gerrit Monitor |
ID | leakcdjcdifiihdgalplgkghidmfafoh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gerrit-monitor/leakcdjcdifiihdgalplgkghidmfafoh |
คำอธิบาย | Monitor your CLs on Gerrit |
ขนาดไฟล์ | 41.11 KB |
จำนวนการติดตั้ง | 4,452 |
เวอร์ชันปัจจุบัน | 1.3.1 |
อัปเดตครั้งล่าสุด | 2023-07-31 |
วันที่เผยแพร่ | 2020-06-02 |
คะแนน | 5.00/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Sylvain Defresne |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/sdefresne/gerrit-monitor |
URL หน้าช่วยเหลือ | https://github.com/sdefresne/gerrit-monitor/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gerrit Monitor", "description": "Monitor your CLs on Gerrit", "version": "1.3.1", "icons": { "48": "img\/icon48.png", "128": "img\/icon128.png" }, "permissions": [ "alarms", "storage", "tabs" ], "optional_permissions": [ "notifications", "http:\/\/*\/", "https:\/\/*\/" ], "options_page": "options.html", "browser_action": { "default_icon": { "24": "img\/ic_assignment_black_24dp_1x.png", "48": "img\/ic_assignment_black_24dp_2x.png" }, "default_title": "Unknown", "default_popup": "popup.html" }, "background": { "page": "background.html", "persistent": true } } |