CardJIRA
CardJIRA lets you print cards from issues on your agile board, in saved JQL filters or single issues. #ScratchYourOwnItch
O que é CardJIRA?
CardJIRA é uma extensão do Chrome desenvolvida por Tomislav Jerković (cardjira), e sua principal característica é "CardJIRA lets you print cards from issues on your agile board, in saved JQL filters or single issues. #ScratchYourOwnItch".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão CardJIRA
Baixe arquivos de extensão CardJIRA 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 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!
Informações Básicas da Extensão
Nome | CardJIRA |
ID | bnndkjmhdojckfeogcnbnpilnikcihmp |
URL Oficial | https://chromewebstore.google.com/detail/cardjira/bnndkjmhdojckfeogcnbnpilnikcihmp |
Descrição | CardJIRA lets you print cards from issues on your agile board, in saved JQL filters or single issues. #ScratchYourOwnItch |
Tamanho do Arquivo | 78.32 KB |
Contagem de Instalações | 43 |
Versão Atual | v1.5.14.0 |
Última Atualização | 2023-04-16 |
Data de Publicação | 2018-05-09 |
Classificação | 3.67/5 Total de 6 Avaliações |
Desenvolvedor | Tomislav Jerković (cardjira) |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://cardjira.yeahkovic.de/ |
Idiomas Suportados | 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" ] } |