GitHub code review

This extension adds hot keys and hierarchical file view to GitHub pull request pages.

什麼是GitHub code review?

GitHub code review是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“This extension adds hot keys and hierarchical file view to GitHub pull request pages.”。

擴展截圖

screenshot

下載GitHub code review擴展crx文件

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

擴展使用說明

                        When viewing file diffs in a GitHub pull request:
- Jump between diffs with j/k keys.
- Jump between comments with n/p keys.
- Press z key to view a hierarchical representation of the changed files. Each file in a hierarchy also shows a count of comments.                    

擴展基本資訊

名稱 GitHub code review GitHub code review
ID lminappfllpnijhgafphnmcdfbnppmac
官方網址 https://chromewebstore.google.com/detail/github-code-review/lminappfllpnijhgafphnmcdfbnppmac
簡介 This extension adds hot keys and hierarchical file view to GitHub pull request pages.
檔案大小 54.71 KB
安裝次數 324
目前版本 1.1.20
更新時間 2020-04-18
上架時間 2020-04-18
評分 4.29/5 共 7 次評分
開發者 Unknown
付費類型 free
擴展官網 https://github.com/irek02/chrome-github-code-review
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub code review",
    "description": "This extension adds hot keys and hierarchical file view to GitHub pull request pages.",
    "version": "1.1.20",
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "lib\/jquery-1.12.3.min.js",
                "src\/main.min.js",
                "src\/chrome-ext-init.js"
            ],
            "css": [
                "src\/main.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.svg"
    ]
}