Github Expand Diff

A user script for Chrome that allows you to expand the missing lines in a Github diff.

Github Expand Diff란 무엇입니까?

Github Expand Diff은(는) Michael Ridgway에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A user script for Chrome that allows you to expand the missing lines in a Github diff."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Github Expand Diff 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                                            

확장 프로그램 기본 정보

이름 Github Expand Diff Github Expand Diff
ID imakbajpbolcgnkfhhlhipbjppfomlij
공식 URL https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij
설명 A user script for Chrome that allows you to expand the missing lines in a Github diff.
파일 크기 5.63 KB
설치 횟수 121
현재 버전 0.0.1.6
최근 업데이트 2014-06-18
출시 날짜 2014-06-18
평점 3.86/5 총 7 개의 평점
개발자 Michael Ridgway
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mridgway/github-expand-diff
도움말 페이지 URL https://github.com/mridgway/github-expand-diff/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Expand Diff",
    "version": "0.0.1.6",
    "description": "A user script for Chrome that allows you to expand the missing lines in a Github diff.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.com\/*\/*\/pull\/*",
                "https:\/\/*.com\/*\/*\/commit\/*",
                "https:\/\/*.com\/*\/*\/compare\/*"
            ],
            "include_globs": [
                "https:\/\/github.com\/*",
                "https:\/\/github.*.com\/*",
                "https:\/\/git.*.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "github-expand-diff.user.js"
            ]
        }
    ]
}