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
电子邮箱 [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"
            ]
        }
    ]
}