Estimations sum for Jira boards

This extension sums up the remaining time estimates shown in a scrum board of Jira

Estimations sum for Jira boards là gì?

Estimations sum for Jira boards là một tiện ích mở rộng Chrome được phát triển bởi drabiger, và tính năng chính của nó là "This extension sums up the remaining time estimates shown in a scrum board of Jira".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Estimations sum for Jira boards

Tải xuống các tệp mở rộng Estimations sum for Jira boards 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

                        Atlassian Jira's has a feature to capture estimations and remaining estimates in issues. You can configure Jira to show these numbers on the issue cards in scrum board.

I found it useful to see the sum of all issues for each column. Unfortunately, Jira lacks such a feature.

When turned on, this Chrome extension will calculate the sum of "remaining estimates" for each column, taking into account all issues being displayed. If you apply a filter, the sum will be calculated only for the issues matching your filter settings.

With version 1.00, the plugin additionally shows the number of cards, per column, in brackets. This additional feature was added by Jan Topiński (simcha).

The extension was tested with Jira cloud and with Jira 7.3.8. Happy to get your feedback!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Estimations sum for Jira boards Estimations sum for Jira boards
ID mmbocjepfajlidapdnikdjebbdfjgbki
URL Chính Thức https://chromewebstore.google.com/detail/estimations-sum-for-jira/mmbocjepfajlidapdnikdjebbdfjgbki
Mô tả This extension sums up the remaining time estimates shown in a scrum board of Jira
Kích Thước Tệp 212 KB
Số Lần Cài Đặt 675
Phiên Bản Hiện Tại 1.00
Cập Nhật Lần Cuối 2020-04-07
Ngày Phát Hành 2020-04-05
Đánh Giá 4.50/5 Tổng số 8 Đánh Giá
Nhà Phát Triển drabiger
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/drabiger/estimationsSumForJira
URL Trang Trợ Giúp https://github.com/drabiger/estimationsSumForJira
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Estimations sum for Jira boards",
    "description": "This extension sums up the remaining time estimates shown in a scrum board of Jira",
    "version": "1.00",
    "short_name": "Jira Estimations Sum",
    "author": "Dirk R\u00e4biger",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/secure\/RapidBoard.jspa?*",
                "https:\/\/*\/secure\/RapidBoard.jspa?*"
            ],
            "css": [
                "bootstrap.min.css",
                "estimates.css"
            ],
            "js": [
                "jquery.min.js",
                "estimates.js"
            ],
            "run_at": "document_end"
        }
    ]
}