Gerrit Monitor

Monitor your CLs on Gerrit

什麼是Gerrit Monitor?

Gerrit Monitor是由Sylvain Defresne開發的Chrome擴展程式,該擴展的主要功能是“Monitor your CLs on Gerrit”。

擴展截圖

screenshot

下載Gerrit Monitor擴展crx文件

下載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 Gerrit Monitor
ID leakcdjcdifiihdgalplgkghidmfafoh
官方網址 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
    }
}