GitHub Code Review Helper

This extension Helps code review on GitHub

GitHub Code Review Helperとは何ですか?

GitHub Code Review Helperはmoshe.zemahによって開発されたChromeの拡張機能で、その主な機能は「This extension Helps code review on GitHub」です。

拡張機能のスクリーンショット

screenshot

GitHub Code Review Helper拡張機能のCRXファイルをダウンロード

GitHub Code Review Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension helps the reviewer by adding a files tree left to the files diff in github. 
This way you can easily navigate to files, mark them as "Done", collapse/expand all files...

Other useful feature: 
 - Make the files header sticky (so when scrolling you always see which files are you looking at)
 - When in the conversation part of the Pull request, jump directly to the "Checks" part instead of scrolling all the way down (on key press)
 - "Checks" list is higher (so you won't need to scroll inside it
 - Jump to next/previous diff file
 - Jump to next/previous code review comment
 - Under "Files changed" tab - navigate to conversation tab with a single key stroke (no need to scroll all the way up)                    

拡張機能の基本情報

名前 GitHub Code Review Helper GitHub Code Review Helper
ID pnklichompgfnakhgfoakpebjaidlpdk
公式URL https://chromewebstore.google.com/detail/github-code-review-helper/pnklichompgfnakhgfoakpebjaidlpdk
説明 This extension Helps code review on GitHub
ファイルサイズ 455 KB
インストール数 74
現在のバージョン 2.3.3
最終更新日 2020-12-10
公開日 2020-04-06
評価 5.00/5 合計 1 レビュー
開発者 moshe.zemah
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Code Review Helper",
    "description": "This extension Helps code review on GitHub",
    "version": "2.3.3",
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "lib\/jquery-1.12.3.min.js",
                "src\/main.js",
                "src\/main\/AppInteractionService.js",
                "src\/main\/DecorationService.js",
                "src\/main\/HierarchyGeneratorService.js",
                "src\/main\/HotKeysService.js",
                "src\/main\/LocalStorageService.js",
                "src\/chrome-ext-init.js"
            ],
            "css": [
                "icons\/file-icon-classic.css",
                "src\/main.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.svg",
        "icons\/classic\/*.svg"
    ]
}