Github Diffs

Collapse/expand diff files for easier reviews

Github Diffs란 무엇입니까?

Github Diffs은(는) kamranahmed.se에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Collapse/expand diff files for easier reviews"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Collapse/expand diff files for easier reviews

When there is a large number of files in a pull request it becomes difficult to get an overview or to find some specific files with all the files stacked upon each other. This extension allows collapsing and expanding files so that you do not have to pound the innocent scrollbar.

It adds buttons to `Collapse all Diffs` or `Show all Diffs` and makes `file headers clickable` to toggle the diff for some specific file                    

확장 프로그램 기본 정보

이름 Github Diffs Github Diffs
ID dhcpmhfjmlgjfhpeeloohoffbmpjfmgh
공식 URL https://chromewebstore.google.com/detail/github-diffs/dhcpmhfjmlgjfhpeeloohoffbmpjfmgh
설명 Collapse/expand diff files for easier reviews
파일 크기 12.99 KB
설치 횟수 85
현재 버전 1.0.3
최근 업데이트 2017-08-11
출시 날짜 2017-08-11
개발자 kamranahmed.se
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Diffs",
    "short_name": "github-diffs",
    "version": "1.0.3",
    "manifest_version": 2,
    "description": "Collapse\/expand diff files for easier reviews",
    "homepage_url": "http:\/\/github.com\/kamranahmedse\/github-diffs",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "GithubDiff.js"
            ]
        }
    ]
}