GitHub Reviewer

Make code review easier in GitHub.

GitHub Reviewer란 무엇입니까?

GitHub Reviewer은(는) auiWorks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make code review easier in GitHub."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

GitHub Reviewer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Features:
 - Fold/expand files in GitHub Pull Request's "Files Changed"
 - Auto fold file which matches patterns defined

Ideas:
- Stars Management

GitHub Repository:
https://github.com/auiWorks/GitHub-Reviewer                    

확장 프로그램 기본 정보

이름 GitHub Reviewer GitHub Reviewer
ID cgkhabhmjiofemilijihohcgbiachdgm
공식 URL https://chromewebstore.google.com/detail/github-reviewer/cgkhabhmjiofemilijihohcgbiachdgm
설명 Make code review easier in GitHub.
파일 크기 65.36 KB
설치 횟수 27
현재 버전 0.0.6
최근 업데이트 2014-01-29
출시 날짜 2014-01-28
평점 3.50/5 총 2 개의 평점
개발자 auiWorks
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/auiWorks/GitHub-Reviewer
도움말 페이지 URL https://github.com/auiWorks/GitHub-Reviewer/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "128": "image\/icon128.png"
    },
    "version": "0.0.6",
    "minimum_chrome_version": "22",
    "options_page": "settings.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/pull\/*"
            ],
            "css": [
                "style\/content\/pull.css"
            ],
            "js": [
                "script\/lib\/jquery.min.js",
                "script\/content\/pull.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "*:\/\/github.com\/*\/pull\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com https:\/\/platform.twitter.com; object-src 'self'"
}