Gerrit Monitor
Monitor your CLs on Gerrit
Gerrit Monitor란 무엇입니까?
Gerrit Monitor은(는) Sylvain Defresne에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Monitor your CLs on Gerrit"입니다.
확장 프로그램 스크린샷
Gerrit Monitor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } } |