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.
Vad är Story Point Totals for JIRA Kanban Boards?
Story Point Totals for JIRA Kanban Boards är en Chrome-tillägg utvecklad av https://noahcoffey.com, och dess huvudfunktion är "This extension totals story points in JIRA Kanban boards and puts them at the top of each column.".
Tilläggsskärmbilder
Ladda ner Story Point Totals for JIRA Kanban Boards-förlängningens CRX-fil
Ladda ner Story Point Totals for JIRA Kanban Boards-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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).
Grundläggande Information om Tillägg
Namn | Story Point Totals for JIRA Kanban Boards |
ID | codmglobaohfdpjjckagjaanifogeili |
Officiell webbadress | https://chromewebstore.google.com/detail/story-point-totals-for-ji/codmglobaohfdpjjckagjaanifogeili |
Beskrivning | This extension totals story points in JIRA Kanban boards and puts them at the top of each column. |
Filstorlek | 19.07 KB |
Antal Installationer | 201 |
Aktuell Version | 0.0.2 |
Senast Uppdaterad | 2019-07-02 |
Publiceringsdatum | 2019-07-02 |
Betyg | 2.00/5 Totalt 2 Betyg |
Utvecklare | https://noahcoffey.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://noahcoffey.com/jira-story-points/ |
Hjälpsida URL | https://noahcoffey.com/jira-story-points/ |
Stödda Språk | 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" ] } ] } |