Github Reviewer Groups
Adds predefined groups of github reviewers
Τι είναι το Github Reviewer Groups;
Το Github Reviewer Groups είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Khaled Ali, και η κύρια λειτουργία του είναι "Adds predefined groups of github reviewers".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Github Reviewer Groups
Λήψη αρχείων επέκτασης 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" } } |