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.

O que é Story Point Totals for JIRA Kanban Boards?

Story Point Totals for JIRA Kanban Boards é uma extensão do Chrome desenvolvida por https://noahcoffey.com, e sua principal característica é "This extension totals story points in JIRA Kanban boards and puts them at the top of each column.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Story Point Totals for JIRA Kanban Boards

Baixe arquivos de extensão Story Point Totals for JIRA Kanban Boards no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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).                    

Informações Básicas da Extensão

Nome Story Point Totals for JIRA Kanban Boards Story Point Totals for JIRA Kanban Boards
ID codmglobaohfdpjjckagjaanifogeili
URL Oficial https://chromewebstore.google.com/detail/story-point-totals-for-ji/codmglobaohfdpjjckagjaanifogeili
Descrição This extension totals story points in JIRA Kanban boards and puts them at the top of each column.
Tamanho do Arquivo 19.07 KB
Contagem de Instalações 201
Versão Atual 0.0.2
Última Atualização 2019-07-02
Data de Publicação 2019-07-02
Classificação 2.00/5 Total de 2 Avaliações
Desenvolvedor https://noahcoffey.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://noahcoffey.com/jira-story-points/
URL da Página de Ajuda https://noahcoffey.com/jira-story-points/
Idiomas Suportados 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"
            ]
        }
    ]
}