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.”。
擴展截圖
下載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.                     擴展基本資訊
| 名稱 |   |  
| ID | cpmdkallcicfjmficnfeggjmegjcophe | 
| 官方網址 | 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"
    ]
}  |  |