Jira - Estimations sum for columns in boards
This extension sums up the estimates for each column in both Scrum and Kanban boards.
Τι είναι το Jira - Estimations sum for columns in boards;
Το Jira - Estimations sum for columns in boards είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Per Lundström, και η κύρια λειτουργία του είναι "This extension sums up the estimates for each column in both Scrum and Kanban boards.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Jira - Estimations sum for columns in boards
Λήψη αρχείων επέκτασης Jira - Estimations sum for columns in boards σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Jira - Estimations sum for columns in boards Requirements: - "Global time tracking settings/Time display format" can be either "days" or "hours". - The project needs to be "company-managed". - The Scrum board needs to show only one estimation field. Either that from "Board settings/Estimation" or "Board settings/Card layout". - The Kanban board needs to show only one estimation field, which you can find under "Board Settings/Card layout".
Βασικές Πληροφορίες Επέκτασης
Όνομα | Jira - Estimations sum for columns in boards |
ID | dfpbfekaakbmmlpkjghimjlconpnfmbl |
Επίσημο URL | https://chromewebstore.google.com/detail/jira-estimations-sum-for/dfpbfekaakbmmlpkjghimjlconpnfmbl |
Περιγραφή | This extension sums up the estimates for each column in both Scrum and Kanban boards. |
Μέγεθος Αρχείου | 148 KB |
Αριθμός Εγκαταστάσεων | 38 |
Τρέχουσα Έκδοση | 1.3 |
Τελευταία Ενημέρωση | 2021-10-16 |
Ημερομηνία Δημοσίευσης | 2021-04-15 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | Per Lundström |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.linkedin.com/in/per-lundstr%C3%B6m-7a7bb0a4/ |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Jira - Estimations sum for columns in boards", "description": "This extension sums up the estimates for each column in both Scrum and Kanban boards.", "version": "1.3", "short_name": "Jira - Estimations sums", "author": "Per Lundstr\u00f6m", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/secure\/RapidBoard.jspa?*", "https:\/\/*\/secure\/RapidBoard.jspa?*", "https:\/\/*\/jira\/software\/*" ], "js": [ "src\/inject\/inject.js", "js\/jquery\/jquery.min.js" ], "run_at": "document_end" } ] } |