CardJIRA

CardJIRA lets you print cards from issues on your agile board, in saved JQL filters or single issues. #ScratchYourOwnItch

¿Qué es CardJIRA?

CardJIRA es una extensión de Chrome desarrollada por Tomislav Jerković (cardjira), y su función principal es "CardJIRA lets you print cards from issues on your agile board, in saved JQL filters or single issues. #ScratchYourOwnItch".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión CardJIRA

Descarga archivos de extensión CardJIRA en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        This chrome extension will help you print useful cards for your team's task board. Cards you can - to some extent - customize to your own needs.

You want to see the associated epic? A couple of custom fields on every card? The estimate in story points? (And a couple other things ...) Well, break out the confetti: This extension will do the trick for you!

Of course it will also show you the issue's summary, the issue's key - the basic information. That way you can find it quickly when you want to look it up in JIRA. It also shows the issue's type icon, so you can see if it's a story, a bug or something else - that way it makes the single issue's cards easier to distinguish and loosens up the whole picture visually which in turn makes it easier to find your way aroud the number of cards on your board.

And the best thing is: you can trigger this extension from an agile board! If you have a scrum board and a sprint is currently running, then CardJIRA will print the sprint's issues. If you have a kanban boad, then you can select a single or multiple issues (ctrl + click) and CardJIRA will print those selected issues.

Of course you can also print single issues - just open the issue and click the CardJIRA icon. CardJIRA will then generate a single card from this issue.

And for everything else you can put together a JIRA filter. Once it's saved, you can click the CardJIRA icon and the extension will print cards for all the issues found by this JQL filter.

I ask for permission for "all sites", because I cannot know what host you're running JIRA on. The addon will only run on JIRA pages and display an error message when triggered on a non-JIRA page.

Currently there is only one default layout / print style for cards. But I already prepared the plugin to support a number of different layouts in the future. And I plan to add those layouts, because I'd like this addon to suit many more use cases that arise along the way.

This addon is not created / supported by Atlassian.

Why I wrote this addon:
I wrote this chrome extension, because there was no way for me to print out task cards from JIRA that presented the relevant information in a way that was easy to use for my team members in the daily scrum meeting. Or at least I wasn't happy with the options I had: With other plugins etc. it all either looked too uniform and we had difficulties to recognize the issues and to distinguish on from another while standing around our (physical) task board. Or it just didn't show the relevant information we would need while discussing yesterday's results and challenges and today's goals.

So after using a server side script on my local machine for quite some time, I thought that if I turned this into a browser extension I could not only streamline the whole process for me, but also share the benefits with my colleagues and - well - I guess: you.

I hope it is of use to you and saves you some time!

Cheers,
Tom!                    

Información Básica de la Extensión

Nombre CardJIRA CardJIRA
ID bnndkjmhdojckfeogcnbnpilnikcihmp
URL Oficial https://chromewebstore.google.com/detail/cardjira/bnndkjmhdojckfeogcnbnpilnikcihmp
Descripción CardJIRA lets you print cards from issues on your agile board, in saved JQL filters or single issues. #ScratchYourOwnItch
Tamaño del Archivo 78.32 KB
Cantidad de Instalaciones 43
Versión Actual v1.5.14.0
Última Actualización 2023-04-16
Fecha de Publicación 2018-05-09
Calificación 3.67/5 Total de 6 Calificaciones
Desarrollador Tomislav Jerković (cardjira)
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://cardjira.yeahkovic.de/
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CardJIRA",
    "short_name": "CardJIRA",
    "version": "1.5.14.0",
    "version_name": "v1.5.14.0",
    "description": "CardJIRA lets you print cards from issues on your agile board, in saved JQL filters or single issues. #ScratchYourOwnItch",
    "author": "Tomislav Jerkovic",
    "options_ui": {
        "page": "settings\/settings.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": {
            "40": "icon.png",
            "128": "icon.png"
        },
        "default_title": "CardJIRA - create cards now!",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "minimum_chrome_version": "49.0.2623.75",
    "permissions": [
        "activeTab",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "cards.html",
        "img\/unicorn.png"
    ]
}