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.
What is Story Point Totals for JIRA Kanban Boards?
Story Point Totals for JIRA Kanban Boards is a Chrome extension developed by https://noahcoffey.com, and its main feature is "This extension totals story points in JIRA Kanban boards and puts them at the top of each column.".
Extension Screenshots
Download Story Point Totals for JIRA Kanban Boards Extension CRX File
Download Story Point Totals for JIRA Kanban Boards extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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).
Extension Basic Information
Name | Story Point Totals for JIRA Kanban Boards |
ID | codmglobaohfdpjjckagjaanifogeili |
Official URL | https://chromewebstore.google.com/detail/story-point-totals-for-ji/codmglobaohfdpjjckagjaanifogeili |
Description | This extension totals story points in JIRA Kanban boards and puts them at the top of each column. |
File Size | 19.07 KB |
Installation Count | 201 |
Current Version | 0.0.2 |
Last Updated | 2019-07-02 |
Publish Date | 2019-07-02 |
Rating | 2.00/5 Total 2 Ratings |
Developer | https://noahcoffey.com |
[email protected] | |
Payment Type | free |
Extension Website | https://noahcoffey.com/jira-story-points/ |
Help Page URL | https://noahcoffey.com/jira-story-points/ |
Supported Languages | 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" ] } ] } |