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ファイルをダウンロード

Side-by-side diff view in Github拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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'"
}