Stash PR Helper
Helps Stash users to fill in Pull Requests' descriptions and reviewers
Τι είναι το Stash PR Helper;
Το Stash PR Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον nebakraj, και η κύρια λειτουργία του είναι "Helps Stash users to fill in Pull Requests' descriptions and reviewers".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Stash PR Helper
Λήψη αρχείων επέκτασης Stash PR Helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Stash PR Helper is a productivity tool which allows Stash users to create Pull Requests (PRs) easier. For now the app provides 2 options: PR description templates and PR reviewers groups. How to use. 1) Go to the settings page and add some items. 2) When creating a pull request put a cursor into the appropriate field (Description or Reviewers) 3) Push any keyboard arrow (up, down, left, right) to open a pop-up with a list of suggestions. 4) Select some suggestion and get the field auto-filled. For unpacked version check: https://github.com/konst8/stash_pr_helper/tree/master
Βασικές Πληροφορίες Επέκτασης
Όνομα | Stash PR Helper |
ID | egdpkgklhlhmckklngifpnjfcmgahpnk |
Επίσημο URL | https://chromewebstore.google.com/detail/stash-pr-helper/egdpkgklhlhmckklngifpnjfcmgahpnk |
Περιγραφή | Helps Stash users to fill in Pull Requests' descriptions and reviewers |
Μέγεθος Αρχείου | 112 KB |
Αριθμός Εγκαταστάσεων | 102 |
Τρέχουσα Έκδοση | 1.0.0.8 |
Τελευταία Ενημέρωση | 2018-02-20 |
Ημερομηνία Δημοσίευσης | 2018-02-19 |
Αξιολόγηση | 3.67/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | nebakraj |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stash PR Helper", "description": "Helps Stash users to fill in Pull Requests' descriptions and reviewers", "version": "1.0.0.8", "permissions": [ "activeTab", "storage" ], "icons": { "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "Fill in PR's reviewers" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*\/*pull-requests*", "https:\/\/*\/*compare\/commits?*", "https:\/\/*\/*compare\/diff?*" ], "js": [ "libs\/jquery-ui-1.12.1.custom\/external\/jquery\/jquery.js", "contentScript.js" ], "css": [ "content.css" ] } ], "web_accessible_resources": [ "contentEject.js" ], "options_ui": { "page": "options\/options.html", "chrome_style": true } } |