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 là gì?

Github Code Review là một tiện ích mở rộng Chrome được phát triển bởi Ecky Putrady, và tính năng chính của nó là "Github Code Review is a Chrome extension that lets you do code review easily on top of github pull request".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Github Code Review

Tải xuống các tệp mở rộng Github Code Review dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Github Code Review Github Code Review
ID pgdgcfbmpimnnafmejbbgodlijodgppk
URL Chính Thức https://chromewebstore.google.com/detail/github-code-review/pgdgcfbmpimnnafmejbbgodlijodgppk
Mô tả Github Code Review is a Chrome extension that lets you do code review easily on top of github pull request
Kích Thước Tệp 83.14 KB
Số Lần Cài Đặt 125
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2015-02-09
Ngày Phát Hành 2015-02-08
Nhà Phát Triển Ecky Putrady
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/eckyputrady/github-pr-approver
URL Trang Trợ Giúp https://github.com/eckyputrady/github-pr-approver/issues
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}