Gerrit for Gmail

Extension for adding Gerrit integration to Gmail.

Gerrit for Gmailคืออะไร?

Gerrit for Gmail เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chung Wu และคุณลักษณะหลักของมันคือ "Extension for adding Gerrit integration to Gmail."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gerrit for Gmail

ดาวน์โหลดไฟล์ส่วนขยาย Gerrit for Gmail ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Gerrit is great, and its review-per-commit model really encourages numerous small, logical, easy-to-digest code reviews over a few monstrous ones -- just the way we prefer it. However, that also means we end up doing a lot of small code reviews that are so simple and straightforward, that often we'd rather just read and approve the change right when we receive the code review notification in Gmail. That's what this Chrome extension is -- a frictionless UI for performing your common Gerrit actions without leaving Gmail. It is a mini Gerrit client built right into your Gmail. If you use Gerrit, and you use Gmail, this is for you.

This Chrome extension aims to implement a very basic Gerrit workflow into your Gmail, based on the emails Gerrit sends. Specifically,

On new patch set emails,

* Colored diffs will be displayed for the patch set. If this is not the first patch set, we diff it against the last-commented-upon patch set rather than the Base, so you can more easily track the evolution of the change!
* Double-click on a diff line to make a comment.
* Approve and submit changes.

On new comment emails,
* Comments from previous emails are threaded and displayed together, so that discussions on the same line are easier to follow.
* You can reply to comments directly from Gmail.

In the Inbox / threadlist view, status of Gerrit emails are displayed as either "New", "Merged", "Approved", "Needs Review", "Reviewed", "Waiting", "Rejected", or "Failed", so you can at a glance figure out which Gerrit emails to pay attention to.

And some convenient shortcuts: "w" to open change in Gerrit, and "W" to approve the change.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Gerrit for Gmail Gerrit for Gmail
ID pffnmeolekgjhljdbgpbeaninomjppne
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gerrit-for-gmail/pffnmeolekgjhljdbgpbeaninomjppne
คำอธิบาย Extension for adding Gerrit integration to Gmail.
ขนาดไฟล์ 118 KB
จำนวนการติดตั้ง 98
เวอร์ชันปัจจุบัน 0.4.5
อัปเดตครั้งล่าสุด 2019-10-11
วันที่เผยแพร่ 2019-10-11
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Chung Wu
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/chungwu/gmail-gerrit
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gerrit for Gmail",
    "short_name": "Gerrit for Gmail",
    "version": "0.4.5",
    "manifest_version": 2,
    "description": "Extension for adding Gerrit integration to Gmail.",
    "background": {
        "page": "background.html"
    },
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery-3.3.1.min.js",
                "js\/underscore-min.js",
                "js\/linkify.min.js",
                "js\/linkify-string.min.js",
                "js\/google-analytics-bundle.js",
                "js\/gmgt.js"
            ],
            "css": [
                "css\/gerrit.css"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ]
        }
    ],
    "page_action": {
        "default_icon": "icons\/gerrit.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "cookies",
        "tabs",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "web_accessible_resources": [
        "icons\/gerrit-big.png",
        "icons\/gerrit.png",
        "icons\/add-comment.png",
        "icons\/help.png"
    ]
}