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.”。
擴展截圖
下載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 |
ID | codmglobaohfdpjjckagjaanifogeili |
官方網址 | 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" ] } ] } |