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
公式URL 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"
    ]
}