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 là gì?
Git Diff Flex là một tiện ích mở rộng Chrome được phát triển bởi pbarnum, và tính năng chính của nó là "Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.".
Ả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 Git Diff Flex
Tải xuống các tệp mở rộng Git Diff Flex 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Git Diff Flex |
ID | deholaolbodagbifbcaghhmjlbekndec |
URL Chính Thức | https://chromewebstore.google.com/detail/git-diff-flex/deholaolbodagbifbcaghhmjlbekndec |
Mô tả | Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com. |
Kích Thước Tệp | 17.52 KB |
Số Lần Cài Đặt | 53 |
Phiên Bản Hiện Tại | 1.0.5 |
Cập Nhật Lần Cuối | 2023-06-28 |
Ngày Phát Hành | 2018-08-30 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | pbarnum |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/pbarnum/git-diff-flex/issues |
Ngôn Ngữ Được Hỗ Trợ | 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 } |