Review on GitHub
Review repositories on GitHub like a Pull Request
Review on GitHub란 무엇입니까?
Review on GitHub은(는) Sebastian Gräßl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Review repositories on GitHub like a Pull Request"입니다.
확장 프로그램 스크린샷
Review on GitHub 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension adds the ability to github.com to make notes in files and add them as a compiled list to an issue.
확장 프로그램 기본 정보
이름 | Review on GitHub |
ID | eenlonmglmdookfbknbmcgjkpomndjdp |
공식 URL | https://chromewebstore.google.com/detail/review-on-github/eenlonmglmdookfbknbmcgjkpomndjdp |
설명 | Review repositories on GitHub like a Pull Request |
파일 크기 | 25.81 KB |
설치 횟수 | 115 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2016-05-12 |
출시 날짜 | 2016-05-12 |
개발자 | Sebastian Gräßl |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/bastilian/ReviewOnGitHub |
도움말 페이지 URL | https://github.com/bastilian/ReviewOnGitHub/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Review on GitHub", "description": "Review repositories on GitHub like a Pull Request", "version": "1.0.1", "icons": { "256": "icon.png" }, "permissions": [ "https:\/\/github.com\/*" ], "web_accessible_resources": [ "vendor\/marked.min.js", "components\/notes-button.js", "components\/note-link.js", "components\/file-view.js", "components\/note-form.js", "components\/line-note.js", "components\/notes-list.js", "lib.js", "db.js", "review.js", "review.css" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "review.css" ], "js": [ "inject.js" ] } ] } |