MergEase
Boosts your code reviews by improving the GitHub pull request interface.
MergEase क्या है?
MergEase https://mergease.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Boosts your code reviews by improving the GitHub pull request interface."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में MergEase एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | MergEase |
ID | cpmdkallcicfjmficnfeggjmegjcophe |
आधिकारिक URL | https://chromewebstore.google.com/detail/mergease/cpmdkallcicfjmficnfeggjmegjcophe |
विवरण | Boosts your code reviews by improving the GitHub pull request interface. |
फ़ाइल का आकार | 263 KB |
स्थापना संख्या | 70 |
वर्तमान संस्करण | 0.2.0 |
अंतिम अपडेट | 2023-09-23 |
प्रकाशन तिथि | 2023-03-10 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | https://mergease.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://mergease.com |
गोपनीयता नीति पृष्ठ URL | https://mergease.com/privacy |
समर्थित भाषाएँ | 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" ] } |