Github LGTM
Display code review status on github pull requests
Github LGTM란 무엇입니까?
Github LGTM은(는) Friday Inc.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display code review status on github pull requests"입니다.
확장 프로그램 스크린샷
Github LGTM 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Github pull requests are amazing for managing feature branches. They allow for an open discussion about the changes where anyone can +1 a request they have reviewed and want to have integrated. However there is no easy way to see and count those up or downvotes, especially in a long-winded discussion in a slightly more formal team-wide code review setup. Now with the Github LGTM extension you can get the review status of pull requests on github at a glance. Features: * Display vote summary on pull request list * Display vote summary on pull request details * Disable the merge button when there isn't enough votes on a pull request * Disable the merge button when a pull request is marked as WIP (by adding WIP to its title) * Change the amount of votes necessary to merge and keywords * Display vote count on the favicon on pull request defails page Source code is available at http://github.com/zaki/lgtm
확장 프로그램 기본 정보
이름 | Github LGTM |
ID | cjppnimohipmnginpfcfghchkbpdaioo |
공식 URL | https://chromewebstore.google.com/detail/github-lgtm/cjppnimohipmnginpfcfghchkbpdaioo |
설명 | Display code review status on github pull requests |
파일 크기 | 84.26 KB |
설치 횟수 | 33 |
현재 버전 | 1.2.0 |
최근 업데이트 | 2016-02-01 |
출시 날짜 | 2016-01-31 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Friday Inc. |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://github.com/zaki/lgtm |
지원되는 언어 | en,hu,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "version": "1.2.0", "short_name": "LGTM", "permissions": [ "storage" ], "icons": { "128": "res\/icon.png" }, "content_scripts": [ { "js": [ "js\/jquery-2.1.1.min.js", "js\/mustache.js", "js\/lgtm.js" ], "css": [ "css\/lgtm.css" ], "matches": [ "https:\/\/github.com\/*" ] } ], "background": { "scripts": [ "js\/background.js" ] }, "web_accessible_resources": [ "css\/lgtm.css", "templates\/*", "js\/pushstate.js", "res\/favicon.png" ], "options_page": "options\/options.html", "default_locale": "en" } |