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"
            ]
        }
    ]
}