MergEase
Boosts your code reviews by improving the GitHub pull request interface.
Τι είναι το MergEase;
Το MergEase είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://mergease.com, και η κύρια λειτουργία του είναι "Boosts your code reviews by improving the GitHub pull request interface.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης MergEase
Λήψη αρχείων επέκτασης MergEase σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" ] } |