MergEase

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

O que é MergEase?

MergEase é uma extensão do Chrome desenvolvida por https://mergease.com, e sua principal característica é "Boosts your code reviews by improving the GitHub pull request interface.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão MergEase

Baixe arquivos de extensão MergEase no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome MergEase MergEase
ID cpmdkallcicfjmficnfeggjmegjcophe
URL Oficial https://chromewebstore.google.com/detail/mergease/cpmdkallcicfjmficnfeggjmegjcophe
Descrição Boosts your code reviews by improving the GitHub pull request interface.
Tamanho do Arquivo 263 KB
Contagem de Instalações 70
Versão Atual 0.2.0
Última Atualização 2023-09-23
Data de Publicação 2023-03-10
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor https://mergease.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://mergease.com
URL da Página de Política de Privacidade https://mergease.com/privacy
Idiomas Suportados 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"
    ]
}