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ファイルをダウンロード

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 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
Eメール [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"
    ]
}