Github Reviewer Groups
Adds predefined groups of github reviewers
Github Reviewer Groups란 무엇입니까?
Github Reviewer Groups은(는) Khaled Ali에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds predefined groups of github reviewers"입니다.
확장 프로그램 스크린샷
Github Reviewer Groups 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Create groups of Github users and add them as reviewers to a pull request in one click. How to use: - Enter an access key with repo access (click "make one" to be directed to the proper access key creation page with the minimum permissions) - Press on + button to create a group - Name the group - Enter the usernames/logins of the users you would like to bulk-add as reviewers - Ensure your current active tab is on a pull request you have permission to edit - Click add reviewers - Enjoy 10 extra seconds of your life every time (more if you have to remember everyone's logins) Regarding Security: This project does not communicate with any servers aside from Github's API. It is open source and I invite you to check Github repository in order to confirm this. Never share your access codes with any one :)
확장 프로그램 기본 정보
이름 | Github Reviewer Groups |
ID | mmgjipidkhkfimmfgcgklooinlcfonah |
공식 URL | https://chromewebstore.google.com/detail/github-reviewer-groups/mmgjipidkhkfimmfgcgklooinlcfonah |
설명 | Adds predefined groups of github reviewers |
파일 크기 | 63.63 KB |
설치 횟수 | 76 |
현재 버전 | 1.3 |
최근 업데이트 | 2022-01-09 |
출시 날짜 | 2022-01-08 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Khaled Ali |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/KhaledAylii/Github-Reviewer-Groups/tree/master |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Reviewer Groups", "description": "Adds predefined groups of github reviewers", "version": "1.3", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "activeTab" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/icon_128.png", "32": "\/icon_128.png", "48": "\/icon_128.png", "128": "\/icon_128.png" } }, "icons": { "16": "\/icon_128.png", "32": "\/icon_128.png", "48": "\/icon_128.png", "128": "\/icon_128.png" } } |