Github diff helper
When you have too many files in one github diff, this extension helps you filter out the noise
Github diff helper란 무엇입니까?
Github diff helper은(는) https://alexw.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "When you have too many files in one github diff, this extension helps you filter out the noise"입니다.
확장 프로그램 스크린샷
Github diff helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
★★★★★ Updated to work with the new github async loading files ★★★★★ Github's diff views are terrific, they let you code review easily, but sometimes there's too much to go over! This extension lets you filter out the noise. Adding a small button in the Github diff view, you can select which file types you want to hide. Especially useful when you compile your css with SCSS/LESS, and you don't want to go over tons of generated css files. Or when you write CofeeScript and don't want to go over the generated js files. The extension also helps multiple code reviewers, when you are only in charge of code reviewing a small portion of a large diff. Let me know what you think, issues can be posted here : https://github.com/altryne/Github-diff-extension/issues
확장 프로그램 기본 정보
이름 | Github diff helper |
ID | dhggdgaoccikibijlbocggphcomehbih |
공식 URL | https://chromewebstore.google.com/detail/github-diff-helper/dhggdgaoccikibijlbocggphcomehbih |
설명 | When you have too many files in one github diff, this extension helps you filter out the noise |
파일 크기 | 137 KB |
설치 횟수 | 203 |
현재 버전 | 0.1.1 |
최근 업데이트 | 2017-04-14 |
출시 날짜 | 2017-04-14 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | https://alexw.me |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/altryne/Github-diff-extension |
도움말 페이지 URL | https://github.com/altryne/Github-diff-extension/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github diff helper", "version": "0.1.1", "manifest_version": 2, "description": "When you have too many files in one github diff, this extension helps you filter out the noise", "homepage_url": "http:\/\/extensionizr.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon128.png", "128": "icons\/icon128.png" }, "permissions": [ "https:\/\/github.com\/*", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/github.com\/*" ], "js": [ "js\/jquery\/dist\/jquery.min.js", "js\/underscore.min.js", "src\/inject\/inject.js" ], "run_at": "document_start" } ] } |