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 :) 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |