GitHub File Diff
View diffs of files and directories on GitHub.
What is GitHub File Diff?
GitHub File Diff is a Chrome extension developed by https://akr.am, and its main feature is "View diffs of files and directories on GitHub.".
Extension Screenshots
Download GitHub File Diff Extension CRX File
Download GitHub File Diff extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | GitHub File Diff |
ID | lmhbkinmjbfihpkihjdhcagnigpklinh |
Official URL | https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh |
Description | View diffs of files and directories on GitHub. |
File Size | 354 KB |
Installation Count | 153 |
Current Version | 1.1.9 |
Last Updated | 2024-02-04 |
Publish Date | 2020-03-31 |
Developer | https://akr.am |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/mohd-akram/github-file-diff/issues |
Supported Languages | 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" ] } ] } |