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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Creates consistent colors in JIRA Status pie chart and enhances gadgets to show the filter name in the tooltip."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย JIRA Dashboard Buffs

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}