Jira Estimates Sum

Sum of Jira point and time estimates for columns and total for sprint

什么是Jira Estimates Sum?

Jira Estimates Sum是由fsa开发的Chrome扩展程序,该扩展的主要功能是“Sum of Jira point and time estimates for columns and total for sprint”。

扩展截图

screenshot
screenshot
screenshot

下载Jira Estimates Sum扩展crx文件

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

扩展使用说明

                        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                    

扩展基本信息

名称 Jira Estimates Sum Jira Estimates Sum
ID hgbdjafjcidfmpgbcadmccmfinoinffe
官方URL https://chromewebstore.google.com/detail/jira-estimates-sum/hgbdjafjcidfmpgbcadmccmfinoinffe
简介 Sum of Jira point and time estimates for columns and total for sprint
文件大小 16.02 KB
安装次数 46
当前版本 1.1.1
更新时间 2024-01-02
上架时间 2020-09-22
开发者 fsa
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/filip-savic/jira-estimates-sum-chrome-ext
支持的语言 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
}