Github LGTM

Display code review status on github pull requests

什么是Github LGTM?

Github LGTM是由Friday Inc.开发的Chrome扩展程序,该扩展的主要功能是“Display code review status on github pull requests”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Github LGTM扩展crx文件

下载Github LGTM扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Github pull requests are amazing for managing feature branches. They allow for an open discussion about the changes where anyone can +1 a request they have reviewed and want to have integrated. However there is no easy way to see and count those up or downvotes, especially in a long-winded discussion in a slightly more formal team-wide code review setup.

Now with the Github LGTM extension you can get the review status of pull requests on github at a glance.

Features:

* Display vote summary on pull request list
* Display vote summary on pull request details
* Disable the merge button when there isn't enough votes on a pull request
* Disable the merge button when a pull request is marked as WIP (by adding WIP to its title)
* Change the amount of votes necessary to merge and keywords
* Display vote count on the favicon on pull request defails page

Source code is available at http://github.com/zaki/lgtm                    

扩展基本信息

名称 Github LGTM Github LGTM
ID cjppnimohipmnginpfcfghchkbpdaioo
官方URL https://chromewebstore.google.com/detail/github-lgtm/cjppnimohipmnginpfcfghchkbpdaioo
简介 Display code review status on github pull requests
文件大小 84.26 KB
安装次数 33
当前版本 1.2.0
更新时间 2016-02-01
上架时间 2016-01-31
评分 5.00/5 共3次评分
开发者 Friday Inc.
付费类型 free
扩展官网 http://github.com/zaki/lgtm
支持的语言 en,hu,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.2.0",
    "short_name": "LGTM",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "res\/icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery-2.1.1.min.js",
                "js\/mustache.js",
                "js\/lgtm.js"
            ],
            "css": [
                "css\/lgtm.css"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "web_accessible_resources": [
        "css\/lgtm.css",
        "templates\/*",
        "js\/pushstate.js",
        "res\/favicon.png"
    ],
    "options_page": "options\/options.html",
    "default_locale": "en"
}