Pipe it Down

Reduce diff noise in GitHub pull requests

Was ist Pipe it Down?

Pipe it Down ist eine Chrome-Erweiterung, die von https://thoughtbot.com entwickelt wurde, und ihr Hauptmerkmal ist "Reduce diff noise in GitHub pull requests".

Erweiterungsscreenshots

screenshot
screenshot

Pipe it Down-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pipe it Down-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Pipe it Down Pipe it Down
ID faljmeoihicdhamcpfmafljlhfoljegm
Offizielle URL https://chromewebstore.google.com/detail/pipe-it-down/faljmeoihicdhamcpfmafljlhfoljegm
Beschreibung Reduce diff noise in GitHub pull requests
Dateigröße 19.72 KB
Installationsanzahl 27
Aktuelle Version 0.1.0
Letztes Update 2017-02-24
Veröffentlichungsdatum 2017-02-24
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://thoughtbot.com
Zahlungsart free
Erweiterungswebsite https://github.com/thoughtbot/pipe-it-down
Unterstützte Sprachen 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"
            ]
        }
    ]
}