Jira - Estimations sum for columns in boards

This extension sums up the estimates for each column in both Scrum and Kanban boards.

什麼是Jira - Estimations sum for columns in boards?

Jira - Estimations sum for columns in boards是由Per Lundström開發的Chrome擴展程式,該擴展的主要功能是“This extension sums up the estimates for each column in both Scrum and Kanban boards.”。

擴展截圖

screenshot
screenshot

下載Jira - Estimations sum for columns in boards擴展crx文件

下載Jira - Estimations sum for columns in boards擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Jira - Estimations sum for columns in boards

Requirements:
- "Global time tracking settings/Time display format" can be either "days" or "hours".
- The project needs to be "company-managed".
- The Scrum board needs to show only one estimation field. Either that from "Board settings/Estimation" or "Board settings/Card layout".
- The Kanban board needs to show only one estimation field, which you can find under "Board Settings/Card layout".                    

擴展基本資訊

名稱 Jira - Estimations sum for columns in boards Jira - Estimations sum for columns in boards
ID dfpbfekaakbmmlpkjghimjlconpnfmbl
官方網址 https://chromewebstore.google.com/detail/jira-estimations-sum-for/dfpbfekaakbmmlpkjghimjlconpnfmbl
簡介 This extension sums up the estimates for each column in both Scrum and Kanban boards.
檔案大小 148 KB
安裝次數 38
目前版本 1.3
更新時間 2021-10-16
上架時間 2021-04-15
評分 5.00/5 共 3 次評分
開發者 Per Lundström
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.linkedin.com/in/per-lundstr%C3%B6m-7a7bb0a4/
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jira - Estimations sum for columns in boards",
    "description": "This extension sums up the estimates for each column in both Scrum and Kanban boards.",
    "version": "1.3",
    "short_name": "Jira - Estimations sums",
    "author": "Per Lundstr\u00f6m",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/secure\/RapidBoard.jspa?*",
                "https:\/\/*\/secure\/RapidBoard.jspa?*",
                "https:\/\/*\/jira\/software\/*"
            ],
            "js": [
                "src\/inject\/inject.js",
                "js\/jquery\/jquery.min.js"
            ],
            "run_at": "document_end"
        }
    ]
}