Side-by-side diff view in Github

Adds the option to view diffs side-by-side in Github

Side-by-side diff view in Github란 무엇입니까?

Side-by-side diff view in Github은(는) smike에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds the option to view diffs side-by-side in Github"입니다.

확장 프로그램 스크린샷

screenshot

Side-by-side diff view in Github 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension will transform the diff view on Github to a side-by-side view. Just load a commit page and click the "Show Side-By-Side Diffs" button.

Things that work:
  - Switch between side-by-side and unified diffs
  - Previous comments are shown
  - New comments can be added to any line, but they look funky until you reload.

Found a bug? Have a feature you'd like but isn't working? Please contribute at http://github.com/smike/diffhub.                    

확장 프로그램 기본 정보

이름 Side-by-side diff view in Github Side-by-side diff view in Github
ID ihmhmdmhllhleioijdeoocgoddjckbcd
공식 URL https://chromewebstore.google.com/detail/side-by-side-diff-view-in/ihmhmdmhllhleioijdeoocgoddjckbcd
설명 Adds the option to view diffs side-by-side in Github
파일 크기 51.96 KB
설치 횟수 118
현재 버전 1.0.1
최근 업데이트 2013-03-26
출시 날짜 2013-03-26
평점 2.40/5 총 10 개의 평점
개발자 smike
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://github.com/smike/diffhub
지원되는 언어 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Side-by-side diff view in Github",
    "version": "1.0.1",
    "description": "Adds the option to view diffs side-by-side in Github",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "secrets.js",
            "bg.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "lib\/jquery-1.9.1.min.js",
                "content.js"
            ],
            "css": [
                "lib\/diffhub.css"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}