MergEase

Boosts your code reviews by improving the GitHub pull request interface.

Co je MergEase?

MergEase je rozšíření Chrome vyvinuté https://mergease.com, a jeho hlavní funkcí je „Boosts your code reviews by improving the GitHub pull request interface.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření MergEase

Stáhněte si soubory rozšíření MergEase ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název MergEase MergEase
ID cpmdkallcicfjmficnfeggjmegjcophe
Oficiální URL https://chromewebstore.google.com/detail/mergease/cpmdkallcicfjmficnfeggjmegjcophe
Popis Boosts your code reviews by improving the GitHub pull request interface.
Velikost souboru 263 KB
Počet instalací 70
Aktuální Verze 0.2.0
Poslední Aktualizace 2023-09-23
Datum Vydání 2023-03-10
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář https://mergease.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://mergease.com
URL Stránky Zásad Ochrany Soukromí https://mergease.com/privacy
Podporované Jazyky 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"
    ]
}