GitHub Code Review Helper

This extension Helps code review on GitHub

GitHub Code Review Helper là gì?

GitHub Code Review Helper là một tiện ích mở rộng Chrome được phát triển bởi moshe.zemah, và tính năng chính của nó là "This extension Helps code review on GitHub".

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

screenshot

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

Tải xuống các tệp mở rộng GitHub Code Review Helper 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

                        This extension helps the reviewer by adding a files tree left to the files diff in github. 
This way you can easily navigate to files, mark them as "Done", collapse/expand all files...

Other useful feature: 
 - Make the files header sticky (so when scrolling you always see which files are you looking at)
 - When in the conversation part of the Pull request, jump directly to the "Checks" part instead of scrolling all the way down (on key press)
 - "Checks" list is higher (so you won't need to scroll inside it
 - Jump to next/previous diff file
 - Jump to next/previous code review comment
 - Under "Files changed" tab - navigate to conversation tab with a single key stroke (no need to scroll all the way up)                    

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

Tên GitHub Code Review Helper GitHub Code Review Helper
ID pnklichompgfnakhgfoakpebjaidlpdk
URL Chính Thức https://chromewebstore.google.com/detail/github-code-review-helper/pnklichompgfnakhgfoakpebjaidlpdk
Mô tả This extension Helps code review on GitHub
Kích Thước Tệp 455 KB
Số Lần Cài Đặt 74
Phiên Bản Hiện Tại 2.3.3
Cập Nhật Lần Cuối 2020-12-10
Ngày Phát Hành 2020-04-06
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển moshe.zemah
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Code Review Helper",
    "description": "This extension Helps code review on GitHub",
    "version": "2.3.3",
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "lib\/jquery-1.12.3.min.js",
                "src\/main.js",
                "src\/main\/AppInteractionService.js",
                "src\/main\/DecorationService.js",
                "src\/main\/HierarchyGeneratorService.js",
                "src\/main\/HotKeysService.js",
                "src\/main\/LocalStorageService.js",
                "src\/chrome-ext-init.js"
            ],
            "css": [
                "icons\/file-icon-classic.css",
                "src\/main.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.svg",
        "icons\/classic\/*.svg"
    ]
}