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?

Estimations sum for Jira boards是由drabiger开发的Chrome扩展程序,该扩展的主要功能是“This extension sums up the remaining time estimates shown in a scrum board of Jira”。

扩展截图

screenshot

下载Estimations sum for Jira boards扩展crx文件

下载Estimations sum for Jira boards扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 Estimations sum for Jira boards Estimations sum for Jira boards
ID mmbocjepfajlidapdnikdjebbdfjgbki
官方URL https://chromewebstore.google.com/detail/estimations-sum-for-jira/mmbocjepfajlidapdnikdjebbdfjgbki
简介 This extension sums up the remaining time estimates shown in a scrum board of Jira
文件大小 212 KB
安装次数 675
当前版本 1.00
更新时间 2020-04-07
上架时间 2020-04-05
评分 4.50/5 共8次评分
开发者 drabiger
付费类型 free
扩展官网 https://github.com/drabiger/estimationsSumForJira
帮助页面URL https://github.com/drabiger/estimationsSumForJira
支持的语言 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"
        }
    ]
}