GitHub File Diff
View diffs of files and directories on GitHub.
GitHub File Diff là gì?
GitHub File Diff là một tiện ích mở rộng Chrome được phát triển bởi https://akr.am, và tính năng chính của nó là "View diffs of files and directories on GitHub.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng GitHub File Diff
Tải xuống các tệp mở rộng GitHub File Diff dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GitHub File Diff |
ID | lmhbkinmjbfihpkihjdhcagnigpklinh |
URL Chính Thức | https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh |
Mô tả | View diffs of files and directories on GitHub. |
Kích Thước Tệp | 354 KB |
Số Lần Cài Đặt | 153 |
Phiên Bản Hiện Tại | 1.1.9 |
Cập Nhật Lần Cuối | 2024-02-04 |
Ngày Phát Hành | 2020-03-31 |
Nhà Phát Triển | https://akr.am |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/mohd-akram/github-file-diff/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |