Jira Followers Groups
Allows to create Jira followers groups and easily paste them in comments and description fields
Τι είναι το Jira Followers Groups;
Το Jira Followers Groups είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον nebakraj, και η κύρια λειτουργία του είναι "Allows to create Jira followers groups and easily paste them in comments and description fields".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Jira Followers Groups
Λήψη αρχείων επέκτασης Jira Followers Groups σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
How to use: 1) Open settings page by clicking the app's icon. 2) Create some user groups. 3) Create Jira ticket or edit an existing one. 4) Put cursor into the editable area (description field or comment body) and type dollar sign - $. Make sure there is whitespace before it or start a new line. 5) The list of suggestions should appear. 6) Click on user group you want to paste or use keyboard arrows. For unpacked version of the app check https://github.com/konst8/jira_followers_groups
Βασικές Πληροφορίες Επέκτασης
Όνομα | Jira Followers Groups |
ID | fdojmiggmjfnphbclmpfejfmdfddcdmg |
Επίσημο URL | https://chromewebstore.google.com/detail/jira-followers-groups/fdojmiggmjfnphbclmpfejfmdfddcdmg |
Περιγραφή | Allows to create Jira followers groups and easily paste them in comments and description fields |
Μέγεθος Αρχείου | 114 KB |
Αριθμός Εγκαταστάσεων | 28 |
Τρέχουσα Έκδοση | 1.0.0.3 |
Τελευταία Ενημέρωση | 2018-01-25 |
Ημερομηνία Δημοσίευσης | 2018-01-25 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | nebakraj |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Jira Followers Groups", "description": "Allows to create Jira followers groups and easily paste them in comments and description fields", "version": "1.0.0.3", "permissions": [ "activeTab", "storage" ], "icons": { "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "Edit Jira Followers Groups" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/browse\/*", "*:\/\/*\/secure\/*", "*:\/\/*\/jira\/browse\/*", "*:\/\/*\/jira\/secure\/*" ], "js": [ "libs\/jquery-ui-1.12.1.custom\/external\/jquery\/jquery.js", "contentScript.js" ], "css": [ "content.css" ] } ], "options_ui": { "page": "options\/options.html", "chrome_style": true } } |