Github diff helper

When you have too many files in one github diff, this extension helps you filter out the noise

Github diff helperとは何ですか?

Github diff helperはhttps://alexw.meによって開発されたChromeの拡張機能で、その主な機能は「When you have too many files in one github diff, this extension helps you filter out the noise」です。

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

screenshot
screenshot
screenshot
screenshot

Github diff helper拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        ★★★★★
Updated to work with the new github async loading files
★★★★★

Github's diff views are terrific, they let you code review easily, but sometimes there's too much to go over!

This extension lets you filter out the noise. 

Adding a small button in the Github diff view, you can select which file types you want to hide.

Especially useful when you compile your css with SCSS/LESS, and you don't want to go over tons of generated css files.

Or when you write CofeeScript and don't want to go over the generated js files.

The extension also helps multiple code reviewers, when you are only in charge of code reviewing a small portion of a large diff.

Let me know what you think, issues can be posted here : https://github.com/altryne/Github-diff-extension/issues                    

拡張機能の基本情報

名前 Github diff helper Github diff helper
ID dhggdgaoccikibijlbocggphcomehbih
公式URL https://chromewebstore.google.com/detail/github-diff-helper/dhggdgaoccikibijlbocggphcomehbih
説明 When you have too many files in one github diff, this extension helps you filter out the noise
ファイルサイズ 137 KB
インストール数 203
現在のバージョン 0.1.1
最終更新日 2017-04-14
公開日 2017-04-14
評価 5.00/5 合計 3 レビュー
開発者 https://alexw.me
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/altryne/Github-diff-extension
ヘルプページのURL https://github.com/altryne/Github-diff-extension/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github diff helper",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "When you have too many files in one github diff, this extension helps you filter out the noise",
    "homepage_url": "http:\/\/extensionizr.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon128.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "https:\/\/github.com\/*",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "js\/jquery\/dist\/jquery.min.js",
                "js\/underscore.min.js",
                "src\/inject\/inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}