GitHub Code Review Helper

This extension Helps code review on GitHub

GitHub Code Review Helper란 무엇입니까?

GitHub Code Review Helper은(는) moshe.zemah에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension Helps code review on GitHub"입니다.

확장 프로그램 스크린샷

screenshot

GitHub Code Review Helper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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)                    

확장 프로그램 기본 정보

이름 GitHub Code Review Helper GitHub Code Review Helper
ID pnklichompgfnakhgfoakpebjaidlpdk
공식 URL https://chromewebstore.google.com/detail/github-code-review-helper/pnklichompgfnakhgfoakpebjaidlpdk
설명 This extension Helps code review on GitHub
파일 크기 455 KB
설치 횟수 74
현재 버전 2.3.3
최근 업데이트 2020-12-10
출시 날짜 2020-04-06
평점 5.00/5 총 1 개의 평점
개발자 moshe.zemah
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    ]
}