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.”。
擴展截圖
下載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 |
ID | lmhbkinmjbfihpkihjdhcagnigpklinh |
官方網址 | 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" ] } ] } |