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"
        }
    ]
}