MergEase

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

MergEase란 무엇입니까?

MergEase은(는) https://mergease.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Boosts your code reviews by improving the GitHub pull request interface."입니다.

확장 프로그램 스크린샷

screenshot

MergEase 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    ]
}