Story Point Totals for JIRA Kanban Boards

This extension totals story points in JIRA Kanban boards and puts them at the top of each column.

什么是Story Point Totals for JIRA Kanban Boards?

Story Point Totals for JIRA Kanban Boards是由https://noahcoffey.com开发的Chrome扩展程序,该扩展的主要功能是“This extension totals story points in JIRA Kanban boards and puts them at the top of each column.”。

扩展截图

screenshot
screenshot

下载Story Point Totals for JIRA Kanban Boards扩展crx文件

下载Story Point Totals for JIRA Kanban Boards扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension will count up story point values present in any cards contained in a JIRA Kanban (rapid board) and show the total points at the top of each column (replacing the displayed number of cards).                    

扩展基本信息

名称 Story Point Totals for JIRA Kanban Boards Story Point Totals for JIRA Kanban Boards
ID codmglobaohfdpjjckagjaanifogeili
官方URL https://chromewebstore.google.com/detail/story-point-totals-for-ji/codmglobaohfdpjjckagjaanifogeili
简介 This extension totals story points in JIRA Kanban boards and puts them at the top of each column.
文件大小 19.07 KB
安装次数 201
当前版本 0.0.2
更新时间 2019-07-02
上架时间 2019-07-02
评分 2.00/5 共2次评分
开发者 https://noahcoffey.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://noahcoffey.com/jira-story-points/
帮助页面URL https://noahcoffey.com/jira-story-points/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Story Point Totals for JIRA Kanban Boards",
    "short_name": "JIRA Story Point Totals",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "This extension totals story points in JIRA Kanban boards and puts them at the top of each column.",
    "homepage_url": "https:\/\/noahcoffey.com\/jira-story-points",
    "author": "Noah Coffey",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}