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 là gì?
JIRA Dashboard Buffs là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Creates consistent colors in JIRA Status pie chart and enhances gadgets to show the filter name in the tooltip.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng JIRA Dashboard Buffs
Tải xuống các tệp mở rộng JIRA Dashboard Buffs dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | JIRA Dashboard Buffs |
ID | jciiiplipdahhgkebikdkgmemfpbbape |
URL Chính Thức | https://chromewebstore.google.com/detail/jira-dashboard-buffs/jciiiplipdahhgkebikdkgmemfpbbape |
Mô tả | Creates consistent colors in JIRA Status pie chart and enhances gadgets to show the filter name in the tooltip. |
Kích Thước Tệp | 97.72 KB |
Số Lần Cài Đặt | 76 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2018-02-01 |
Ngày Phát Hành | 2018-02-01 |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |