GitHub code review

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

What is GitHub code review?

GitHub code review is a Chrome extension developed by Unknown, and its main feature is "This extension adds hot keys and hierarchical file view to GitHub pull request pages.".

Extension Screenshots

screenshot

Download GitHub code review Extension CRX File

Download GitHub code review extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name GitHub code review GitHub code review
ID lminappfllpnijhgafphnmcdfbnppmac
Official URL https://chromewebstore.google.com/detail/github-code-review/lminappfllpnijhgafphnmcdfbnppmac
Description This extension adds hot keys and hierarchical file view to GitHub pull request pages.
File Size 54.71 KB
Installation Count 324
Current Version 1.1.20
Last Updated 2020-04-18
Publish Date 2020-04-18
Rating 4.29/5 Total 7 Ratings
Developer Unknown
Payment Type free
Extension Website https://github.com/irek02/chrome-github-code-review
Supported Languages 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"
    ]
}