GitHub File Diff
View diffs of files and directories on GitHub.
GitHub File Diffคืออะไร?
GitHub File Diff เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://akr.am และคุณลักษณะหลักของมันคือ "View diffs of files and directories on GitHub."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub File Diff
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" ] } ] } |