Git Diff Flex
Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.
Git Diff Flexคืออะไร?
Git Diff Flex เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pbarnum และคุณลักษณะหลักของมันคือ "Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Git Diff Flex
ดาวน์โหลดไฟล์ส่วนขยาย Git Diff Flex ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension adds a pane bezel between a file's diff to expand or contract a side in an effort to make line more readable.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Git Diff Flex |
ID | deholaolbodagbifbcaghhmjlbekndec |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/git-diff-flex/deholaolbodagbifbcaghhmjlbekndec |
คำอธิบาย | Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com. |
ขนาดไฟล์ | 17.52 KB |
จำนวนการติดตั้ง | 53 |
เวอร์ชันปัจจุบัน | 1.0.5 |
อัปเดตครั้งล่าสุด | 2023-06-28 |
วันที่เผยแพร่ | 2018-08-30 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | pbarnum |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/pbarnum/git-diff-flex/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Git Diff Flex", "version": "1.0.5", "description": "Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.", "permissions": [ "declarativeContent", "storage" ], "background": { "service_scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.github.com\/*" ], "css": [ "git-diff-flex.css" ], "js": [ "git-diff-flex.js" ] } ], "icons": { "128": "icon_128.png" }, "action": { "default_title": "Git Diff Flex", "default_popup": "options.html" }, "manifest_version": 3 } |