Pipe it Down
Reduce diff noise in GitHub pull requests
Pipe it Down là gì?
Pipe it Down là một tiện ích mở rộng Chrome được phát triển bởi https://thoughtbot.com, và tính năng chính của nó là "Reduce diff noise in GitHub pull requests".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Pipe it Down
Tải xuống các tệp mở rộng Pipe it Down dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Pipe it Down |
ID | faljmeoihicdhamcpfmafljlhfoljegm |
URL Chính Thức | https://chromewebstore.google.com/detail/pipe-it-down/faljmeoihicdhamcpfmafljlhfoljegm |
Mô tả | Reduce diff noise in GitHub pull requests |
Kích Thước Tệp | 19.72 KB |
Số Lần Cài Đặt | 27 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2017-02-24 |
Ngày Phát Hành | 2017-02-24 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://thoughtbot.com |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/thoughtbot/pipe-it-down |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |