Github Expand Diff

A user script for Chrome that allows you to expand the missing lines in a Github diff.

什麼是Github Expand Diff?

Github Expand Diff是由Michael Ridgway開發的Chrome擴展程式,該擴展的主要功能是“A user script for Chrome that allows you to expand the missing lines in a Github diff.”。

擴展截圖

screenshot
screenshot

下載Github Expand Diff擴展crx文件

下載Github Expand Diff擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                                            

擴展基本資訊

名稱 Github Expand Diff Github Expand Diff
ID imakbajpbolcgnkfhhlhipbjppfomlij
官方網址 https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij
簡介 A user script for Chrome that allows you to expand the missing lines in a Github diff.
檔案大小 5.63 KB
安裝次數 121
目前版本 0.0.1.6
更新時間 2014-06-18
上架時間 2014-06-18
評分 3.86/5 共 7 次評分
開發者 Michael Ridgway
付費類型 free
擴展官網 https://github.com/mridgway/github-expand-diff
說明頁面URL https://github.com/mridgway/github-expand-diff/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Expand Diff",
    "version": "0.0.1.6",
    "description": "A user script for Chrome that allows you to expand the missing lines in a Github diff.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.com\/*\/*\/pull\/*",
                "https:\/\/*.com\/*\/*\/commit\/*",
                "https:\/\/*.com\/*\/*\/compare\/*"
            ],
            "include_globs": [
                "https:\/\/github.com\/*",
                "https:\/\/github.*.com\/*",
                "https:\/\/git.*.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "github-expand-diff.user.js"
            ]
        }
    ]
}