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文件
下载Github Reviewer Groups扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } |