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"입니다.
확장 프로그램 스크린샷
Pipe it Down 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" ] } ] } |