JIRA Dashboard Buffs
Creates consistent colors in JIRA Status pie chart and enhances gadgets to show the filter name in the tooltip.
Qu'est-ce que JIRA Dashboard Buffs ?
JIRA Dashboard Buffs est une extension Chrome développée par Unknown, et sa fonction principale est "Creates consistent colors in JIRA Status pie chart and enhances gadgets to show the filter name in the tooltip.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension JIRA Dashboard Buffs
Téléchargez les fichiers d'extension JIRA Dashboard Buffs 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
This extension includes a couple of visual tweaks to Jira dashboards. Currently it works only for Cloud (*.atlassian.net) instances and for the newer side-nav UX. Features: * Tooltips for Pie Chart and Filter Results gadgets will include the filter name. This is great for multi-column dashboards where you can't see the whole gadget title and the default tooltip is the unhelpful "Pie Chart". * Status pie charts that use common status names (New, In Progress, Done, Closed) will now always use the same consistent set of colors. Without this extension, Jira chooses colors for you, meaning that two side-by-side pie charts could have different colors for Done, New, etc. In the future I would like to include the ability for users to add their own custom status-to-color mappings.
Informations de Base sur l'Extension
Nom | JIRA Dashboard Buffs |
ID | jciiiplipdahhgkebikdkgmemfpbbape |
URL Officiel | https://chromewebstore.google.com/detail/jira-dashboard-buffs/jciiiplipdahhgkebikdkgmemfpbbape |
Description | Creates consistent colors in JIRA Status pie chart and enhances gadgets to show the filter name in the tooltip. |
Taille du Fichier | 97.72 KB |
Nombre d'Installations | 76 |
Version Actuelle | 0.2 |
Dernière Mise à Jour | 2018-02-01 |
Date de Publication | 2018-02-01 |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "JIRA Dashboard Buffs", "description": "Creates consistent colors in JIRA Status pie chart and enhances gadgets to show the filter name in the tooltip.", "version": "0.2", "icons": { "128": "jira-pie.png" }, "browser_action": { "default_icon": "jira-pie.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.atlassian.net\/secure\/Dashboard.jspa*" ], "js": [ "jquery-3.2.1.min.js", "underscore-min.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab" ] } |