MergEase
Boosts your code reviews by improving the GitHub pull request interface.
Qu'est-ce que MergEase ?
MergEase est une extension Chrome développée par https://mergease.com, et sa fonction principale est "Boosts your code reviews by improving the GitHub pull request interface.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension MergEase
Téléchargez les fichiers d'extension MergEase au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | MergEase |
ID | cpmdkallcicfjmficnfeggjmegjcophe |
URL Officiel | https://chromewebstore.google.com/detail/mergease/cpmdkallcicfjmficnfeggjmegjcophe |
Description | Boosts your code reviews by improving the GitHub pull request interface. |
Taille du Fichier | 263 KB |
Nombre d'Installations | 70 |
Version Actuelle | 0.2.0 |
Dernière Mise à Jour | 2023-09-23 |
Date de Publication | 2023-03-10 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | https://mergease.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://mergease.com |
URL de la Page de Politique de Confidentialité | https://mergease.com/privacy |
Langues Prises en Charge | 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" ] } |