Jira Estimates Sum
Sum of Jira point and time estimates for columns and total for sprint
Jira Estimates Sum là gì?
Jira Estimates Sum là một tiện ích mở rộng Chrome được phát triển bởi fsa, và tính năng chính của nó là "Sum of Jira point and time estimates for columns and total for sprint".
Ả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 Estimates Sum
Tải xuống các tệp mở rộng Jira Estimates Sum 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
Displays a sum of estimates (works for both points and time) at the top of each column and a total next to the sprint title. Works with: - Classic Scrum Board (both points and time estimates) - Next Gen Scrum Board For time estimates it takes Jira defaults - 60 minutes, 8 hours, 5 days. Feature requests, issues and suggestions welcome at https://github.com/filip-savic/jira-estimates-sum-chrome-ext
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Jira Estimates Sum |
ID | hgbdjafjcidfmpgbcadmccmfinoinffe |
URL Chính Thức | https://chromewebstore.google.com/detail/jira-estimates-sum/hgbdjafjcidfmpgbcadmccmfinoinffe |
Mô tả | Sum of Jira point and time estimates for columns and total for sprint |
Kích Thước Tệp | 16.02 KB |
Số Lần Cài Đặt | 46 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2024-01-02 |
Ngày Phát Hành | 2020-09-22 |
Nhà Phát Triển | fsa |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/filip-savic/jira-estimates-sum-chrome-ext |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jira Estimates Sum", "version": "1.1.1", "description": "Sum of Jira point and time estimates for columns and total for sprint", "permissions": [ "tabs", "webNavigation" ], "host_permissions": [ "https:\/\/*.atlassian.net\/secure\/RapidBoard.jspa*", "https:\/\/*.atlassian.net\/jira\/software\/projects\/*\/boards\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.atlassian.net\/secure\/RapidBoard.jspa*", "https:\/\/*.atlassian.net\/jira\/software\/*\/projects\/*\/boards\/*", "https:\/\/*.atlassian.net\/jira\/software\/projects\/*\/boards\/*" ], "js": [ "index.js" ], "css": [ "style.css" ] } ], "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "manifest_version": 3 } |