Github Code Review

Github Code Review is a Chrome extension that lets you do code review easily on top of github pull request

什么是Github Code Review?

Github Code Review是由Ecky Putrady开发的Chrome扩展程序,该扩展的主要功能是“Github Code Review is a Chrome extension that lets you do code review easily on top of github pull request”。

扩展截图

screenshot
screenshot

下载Github Code Review扩展crx文件

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

扩展使用说明

                        Code review becomes easier with Github Code Review.

Github Code Review is a Chrome Extension that act as a lightweight code review tool on top of Github Pull Request. It let's you approve pull request and see who has approved each pull request easily.

Approve pull request by commenting with the following keywords/emojis:

- :+1:
- :shipit:
- verified
- approve                    

扩展基本信息

名称 Github Code Review Github Code Review
ID pgdgcfbmpimnnafmejbbgodlijodgppk
官方URL https://chromewebstore.google.com/detail/github-code-review/pgdgcfbmpimnnafmejbbgodlijodgppk
简介 Github Code Review is a Chrome extension that lets you do code review easily on top of github pull request
文件大小 83.14 KB
安装次数 125
当前版本 1.0.0
更新时间 2015-02-09
上架时间 2015-02-08
开发者 Ecky Putrady
付费类型 free
扩展官网 https://github.com/eckyputrady/github-pr-approver
帮助页面URL https://github.com/eckyputrady/github-pr-approver/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Code Review",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "Github Code Review is a Chrome extension that lets you do code review easily on top of github pull request",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}