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 - это расширение Chrome, разработанное https://noahcoffey.com, и его основная функция - "This extension totals story points in JIRA Kanban boards and puts them at the top of each column.".
Снимки экрана расширения
Скачать файл CRX расширения Story Point Totals for JIRA Kanban Boards
Скачайте файлы расширений 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 |
Официальный 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" ] } ] } |