GitHub File Diff

View diffs of files and directories on GitHub.

GitHub File Diffとは何ですか?

GitHub File Diffはhttps://akr.amによって開発されたChromeの拡張機能で、その主な機能は「View diffs of files and directories on GitHub.」です。

拡張機能のスクリーンショット

screenshot

GitHub File Diff拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        To use this extension, go to a file or directory in GitHub and click the **History** button. Then, click on any commit. The extension will override the click to show the diffs of only the relevant files instead of GitHub's default behavior of showing the entire commit's diff. This is especially helpful when a commit is very large and GitHub only shows a partial diff or none at all. To get the regular view, simply refresh the page.                    

拡張機能の基本情報

名前 GitHub File Diff GitHub File Diff
ID lmhbkinmjbfihpkihjdhcagnigpklinh
公式URL https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh
説明 View diffs of files and directories on GitHub.
ファイルサイズ 354 KB
インストール数 153
現在のバージョン 1.1.9
最終更新日 2024-02-04
公開日 2020-03-31
開発者 https://akr.am
Eメール [email protected]
支払い方法 free
ヘルプページのURL https://github.com/mohd-akram/github-file-diff/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub File Diff",
    "version": "1.1.9",
    "description": "View diffs of files and directories on GitHub.",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png",
        "256": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "vendor.css"
            ],
            "js": [
                "vendor.js",
                "main.js"
            ]
        }
    ]
}