JIRA Dashboard Buffs

Creates consistent colors in JIRA Status pie chart and enhances gadgets to show the filter name in the tooltip.

Was ist JIRA Dashboard Buffs?

JIRA Dashboard Buffs ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Creates consistent colors in JIRA Status pie chart and enhances gadgets to show the filter name in the tooltip.".

Erweiterungsscreenshots

screenshot
screenshot

JIRA Dashboard Buffs-Erweiterungs-CRX-Datei herunterladen

Laden Sie JIRA Dashboard Buffs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name JIRA Dashboard Buffs JIRA Dashboard Buffs
ID jciiiplipdahhgkebikdkgmemfpbbape
Offizielle URL https://chromewebstore.google.com/detail/jira-dashboard-buffs/jciiiplipdahhgkebikdkgmemfpbbape
Beschreibung Creates consistent colors in JIRA Status pie chart and enhances gadgets to show the filter name in the tooltip.
Dateigröße 97.72 KB
Installationsanzahl 76
Aktuelle Version 0.2
Letztes Update 2018-02-01
Veröffentlichungsdatum 2018-02-01
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}