MergEase
Boosts your code reviews by improving the GitHub pull request interface.
MergEase là gì?
MergEase là một tiện ích mở rộng Chrome được phát triển bởi https://mergease.com, và tính năng chính của nó là "Boosts your code reviews by improving the GitHub pull request interface.".
Ả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 MergEase
Tải xuống các tệp mở rộng MergEase 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
Here's a closer look at what MergEase can do: Display moved code blocks: It can be difficult to track code that has been moved within a file, but MergEase makes it easy by highlighting moved code blocks and showing you where they've been moved to. Highlight changes: Instead of reviewing entire lines of code, MergEase only displays the changes made. This helps you get a clearer understanding of what has been modified, and reduces the time it takes to review code. Structural code comparison: MergEase doesn't only compare text files, it looks at the structures of the code and provides a smarter diff so you don't have to manually find patterns.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | MergEase |
ID | cpmdkallcicfjmficnfeggjmegjcophe |
URL Chính Thức | https://chromewebstore.google.com/detail/mergease/cpmdkallcicfjmficnfeggjmegjcophe |
Mô tả | Boosts your code reviews by improving the GitHub pull request interface. |
Kích Thước Tệp | 263 KB |
Số Lần Cài Đặt | 70 |
Phiên Bản Hiện Tại | 0.2.0 |
Cập Nhật Lần Cuối | 2023-09-23 |
Ngày Phát Hành | 2023-03-10 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://mergease.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://mergease.com |
URL Trang Chính Sách Bảo Mật | https://mergease.com/privacy |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.2.0", "name": "MergEase", "description": "Boosts your code reviews by improving the GitHub pull request interface.", "background": { "service_worker": "serviceworker.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "normal-128.png" }, "icons": { "128": "normal-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "web_accessible_resources": [ { "resources": [ "normal-128.png" ], "matches": [ "https:\/\/github.com\/*" ] }, { "resources": [ "swap-horizontal.svg" ], "matches": [ "https:\/\/github.com\/*" ] }, { "resources": [ "lock-outline.svg" ], "matches": [ "https:\/\/github.com\/*" ] }, { "resources": [ "alert-circle-outline.svg" ], "matches": [ "https:\/\/github.com\/*" ] } ], "permissions": [ "storage" ] } |