LGTM reloaded
Use a keyboard shortcut to LGTM! pull requests in seconds.
LGTM reloaded란 무엇입니까?
LGTM reloaded은(는) https://www.mediavrog.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use a keyboard shortcut to LGTM! pull requests in seconds."입니다.
확장 프로그램 스크린샷
LGTM reloaded 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Just click the LGTM button in the address bar or use the shortcut (Alt+L by default) to submit a LGTM, including a random gif to award the PR owner. Works on github.com pull requests: * If you are on "Conversation" tab: The plugin will create a comment. * If you are on "Files changed" review tab: The plugin will "approve" the PR. If you already have typed some comment into the textarea, the plugin will keep your text and just append the LGTM. Enjoy your teamwork :) You can configure the shortcuts in `More tools` > `Extensions` > `Keyboard Shortcuts`. Icon by http://www.iconarchive.com/show/100-flat-2-icons-by-graphicloads.html
확장 프로그램 기본 정보
이름 | LGTM reloaded |
ID | hefidgcceobmmaiekccmbjpdcmbjklej |
공식 URL | https://chromewebstore.google.com/detail/lgtm-reloaded/hefidgcceobmmaiekccmbjpdcmbjklej |
설명 | Use a keyboard shortcut to LGTM! pull requests in seconds. |
파일 크기 | 75.62 KB |
설치 횟수 | 72 |
현재 버전 | 1.4.2 |
최근 업데이트 | 2020-10-21 |
출시 날짜 | 2019-05-17 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | https://www.mediavrog.net |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.mediavrog.net/projects/lgtm/ |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LGTM reloaded", "short_name": "LGTM!", "version": "1.4.2", "manifest_version": 2, "description": "Use a keyboard shortcut to LGTM! pull requests in seconds.", "homepage_url": "http:\/\/www.mediavrog.net\/projects\/lgtm\/", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "\/src\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icons\/icon19.png", "default_title": "Looks good to me!" }, "commands": { "lgtm": { "suggested_key": { "default": "Alt+L" }, "description": "LGTM! this pull request" }, "lgtm_no_submit": { "suggested_key": { "default": "Alt+Shift+L" }, "description": "LGTM! this pull request (without comment auto-submit)" } }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "src\/lgtm.js" ] } ], "permissions": [ "https:\/\/us-central1-lgtm-reloaded.cloudfunctions.net\/lgtm", "https:\/\/github.com\/", "declarativeContent" ] } |