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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}