Jira Estimates Sum
Sum of Jira point and time estimates for columns and total for sprint
Qu'est-ce que Jira Estimates Sum ?
Jira Estimates Sum est une extension Chrome développée par fsa, et sa fonction principale est "Sum of Jira point and time estimates for columns and total for sprint".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Jira Estimates Sum
Téléchargez les fichiers d'extension Jira Estimates Sum au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Displays a sum of estimates (works for both points and time) at the top of each column and a total next to the sprint title. Works with: - Classic Scrum Board (both points and time estimates) - Next Gen Scrum Board For time estimates it takes Jira defaults - 60 minutes, 8 hours, 5 days. Feature requests, issues and suggestions welcome at https://github.com/filip-savic/jira-estimates-sum-chrome-ext
Informations de Base sur l'Extension
Nom | Jira Estimates Sum |
ID | hgbdjafjcidfmpgbcadmccmfinoinffe |
URL Officiel | https://chromewebstore.google.com/detail/jira-estimates-sum/hgbdjafjcidfmpgbcadmccmfinoinffe |
Description | Sum of Jira point and time estimates for columns and total for sprint |
Taille du Fichier | 16.02 KB |
Nombre d'Installations | 46 |
Version Actuelle | 1.1.1 |
Dernière Mise à Jour | 2024-01-02 |
Date de Publication | 2020-09-22 |
Développeur | fsa |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/filip-savic/jira-estimates-sum-chrome-ext |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jira Estimates Sum", "version": "1.1.1", "description": "Sum of Jira point and time estimates for columns and total for sprint", "permissions": [ "tabs", "webNavigation" ], "host_permissions": [ "https:\/\/*.atlassian.net\/secure\/RapidBoard.jspa*", "https:\/\/*.atlassian.net\/jira\/software\/projects\/*\/boards\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.atlassian.net\/secure\/RapidBoard.jspa*", "https:\/\/*.atlassian.net\/jira\/software\/*\/projects\/*\/boards\/*", "https:\/\/*.atlassian.net\/jira\/software\/projects\/*\/boards\/*" ], "js": [ "index.js" ], "css": [ "style.css" ] } ], "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "manifest_version": 3 } |