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.
Was ist Story Point Totals for JIRA Kanban Boards?
Story Point Totals for JIRA Kanban Boards ist eine Chrome-Erweiterung, die von https://noahcoffey.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension totals story points in JIRA Kanban boards and puts them at the top of each column.".
Erweiterungsscreenshots
Story Point Totals for JIRA Kanban Boards-Erweiterungs-CRX-Datei herunterladen
Laden Sie Story Point Totals for JIRA Kanban Boards-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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).
Grundlegende Informationen zur Erweiterung
Name | Story Point Totals for JIRA Kanban Boards |
ID | codmglobaohfdpjjckagjaanifogeili |
Offizielle URL | https://chromewebstore.google.com/detail/story-point-totals-for-ji/codmglobaohfdpjjckagjaanifogeili |
Beschreibung | This extension totals story points in JIRA Kanban boards and puts them at the top of each column. |
Dateigröße | 19.07 KB |
Installationsanzahl | 201 |
Aktuelle Version | 0.0.2 |
Letztes Update | 2019-07-02 |
Veröffentlichungsdatum | 2019-07-02 |
Bewertung | 2.00/5 Insgesamt 2 Bewertungen |
Entwickler | https://noahcoffey.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://noahcoffey.com/jira-story-points/ |
Hilfeseite URL | https://noahcoffey.com/jira-story-points/ |
Unterstützte Sprachen | 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" ] } ] } |