Pipe it Down

Reduce diff noise in GitHub pull requests

O que é Pipe it Down?

Pipe it Down é uma extensão do Chrome desenvolvida por https://thoughtbot.com, e sua principal característica é "Reduce diff noise in GitHub pull requests".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Pipe it Down

Baixe arquivos de extensão Pipe it Down no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Pipe it Down Pipe it Down
ID faljmeoihicdhamcpfmafljlhfoljegm
URL Oficial https://chromewebstore.google.com/detail/pipe-it-down/faljmeoihicdhamcpfmafljlhfoljegm
Descrição Reduce diff noise in GitHub pull requests
Tamanho do Arquivo 19.72 KB
Contagem de Instalações 27
Versão Atual 0.1.0
Última Atualização 2017-02-24
Data de Publicação 2017-02-24
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://thoughtbot.com
Tipo de Pagamento free
Site da Extensão https://github.com/thoughtbot/pipe-it-down
Idiomas Suportados 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"
            ]
        }
    ]
}