Pipe it Down
Reduce diff noise in GitHub pull requests
What is Pipe it Down?
Pipe it Down is a Chrome extension developed by https://thoughtbot.com, and its main feature is "Reduce diff noise in GitHub pull requests".
Extension Screenshots
Download Pipe it Down Extension CRX File
Download Pipe it Down extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Pipe it Down |
ID | faljmeoihicdhamcpfmafljlhfoljegm |
Official URL | https://chromewebstore.google.com/detail/pipe-it-down/faljmeoihicdhamcpfmafljlhfoljegm |
Description | Reduce diff noise in GitHub pull requests |
File Size | 19.72 KB |
Installation Count | 27 |
Current Version | 0.1.0 |
Last Updated | 2017-02-24 |
Publish Date | 2017-02-24 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://thoughtbot.com |
Payment Type | free |
Extension Website | https://github.com/thoughtbot/pipe-it-down |
Supported Languages | 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" ] } ] } |