GitHub Review Filter

Chrome extension to filter files in GitHub code review using glob

GitHub Review Filterとは何ですか?

GitHub Review FilterはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension to filter files in GitHub code review using glob」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Speed up how you review PRs filtering files based on glob pattern.

You can split your code review into parts based on:

- Components (eg: **/components/Header/**)
- Without tests (eg: !**/__tests__/**)
- File types (eg: *.js)
- No jest snapshot (eg: !*.snapshot)
- etc...

Also, share filters using links, example: "review my PR without tests"

Supported pages:
- Pull request
- Compare changes

Check more in https://github.com/andersonba/github-review-filter                    

拡張機能の基本情報

名前 GitHub Review Filter GitHub Review Filter
ID gnpcfigiidmljgiidkhmmcgbfkolnacg
公式URL https://chromewebstore.google.com/detail/github-review-filter/gnpcfigiidmljgiidkhmmcgbfkolnacg
説明 Chrome extension to filter files in GitHub code review using glob
ファイルサイズ 71.67 KB
インストール数 43
現在のバージョン 0.1.3
最終更新日 2018-05-29
公開日 2018-05-29
開発者 Unknown
支払い方法 free
拡張機能のウェブサイト https://github.com/andersonba/github-review-filter
ヘルプページのURL https://github.com/andersonba/github-review-filter/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Chrome extension to filter files in GitHub code review using glob",
    "version": "0.1.3",
    "name": "GitHub Review Filter",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*\/pull\/*",
                "*:\/\/github.com\/*\/*\/compare\/*"
            ],
            "js": [
                "index.bundle.js"
            ]
        }
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}