Pipe it Down

Reduce diff noise in GitHub pull requests

Pipe it Downとは何ですか?

Pipe it Downはhttps://thoughtbot.comによって開発されたChromeの拡張機能で、その主な機能は「Reduce diff noise in GitHub pull requests」です。

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

screenshot
screenshot

Pipe it Down拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Sometimes the size of a pull request can be overwhelming, which has an impact on your ability to conduct a thorough review. Does your hand get tired of scrolling past file diffs you don't care about? Have you ever deleted the file DOM elements using Dev Tools? Do you yearn for a better reviewing experience?

Pipe it Down helps solve this problem by providing a button to collapse files. The files you collapse are saved in local storage, so revisiting the pull request in the future will automatically collapse them for you. Collapsed files can be expanded again, if you change your mind.

Feedback & contributions are welcome at https://github.com/thoughtbot/pipe-it-down.                    

拡張機能の基本情報

名前 Pipe it Down Pipe it Down
ID faljmeoihicdhamcpfmafljlhfoljegm
公式URL https://chromewebstore.google.com/detail/pipe-it-down/faljmeoihicdhamcpfmafljlhfoljegm
説明 Reduce diff noise in GitHub pull requests
ファイルサイズ 19.72 KB
インストール数 27
現在のバージョン 0.1.0
最終更新日 2017-02-24
公開日 2017-02-24
評価 5.00/5 合計 2 レビュー
開発者 https://thoughtbot.com
支払い方法 free
拡張機能のウェブサイト https://github.com/thoughtbot/pipe-it-down
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pipe it Down",
    "description": "Reduce diff noise in GitHub pull requests",
    "version": "0.1.0",
    "author": "Chris Thorn",
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "zepto.min.js",
                "github.js",
                "icons.js",
                "store.js",
                "file.js",
                "client.js"
            ]
        }
    ]
}