JIRA Dashboard Buffs

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

JIRA Dashboard Buffsとは何ですか?

JIRA Dashboard BuffsはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Creates consistent colors in JIRA Status pie chart and enhances gadgets to show the filter name in the tooltip.」です。

拡張機能のスクリーンショット

screenshot
screenshot

JIRA Dashboard Buffs拡張機能のCRXファイルをダウンロード

JIRA Dashboard Buffs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 JIRA Dashboard Buffs JIRA Dashboard Buffs
ID jciiiplipdahhgkebikdkgmemfpbbape
公式URL https://chromewebstore.google.com/detail/jira-dashboard-buffs/jciiiplipdahhgkebikdkgmemfpbbape
説明 Creates consistent colors in JIRA Status pie chart and enhances gadgets to show the filter name in the tooltip.
ファイルサイズ 97.72 KB
インストール数 76
現在のバージョン 0.2
最終更新日 2018-02-01
公開日 2018-02-01
開発者 Unknown
支払い方法 free
対応言語 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"
    ]
}