CardJIRA
CardJIRA lets you print cards from issues on your agile board, in saved JQL filters or single issues. #ScratchYourOwnItch
什么是CardJIRA?
CardJIRA是由Tomislav Jerković (cardjira)开发的Chrome扩展程序,该扩展的主要功能是“CardJIRA lets you print cards from issues on your agile board, in saved JQL filters or single issues. #ScratchYourOwnItch”。
扩展截图
下载CardJIRA扩展crx文件
下载CardJIRA扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | CardJIRA |
ID | bnndkjmhdojckfeogcnbnpilnikcihmp |
官方URL | https://chromewebstore.google.com/detail/cardjira/bnndkjmhdojckfeogcnbnpilnikcihmp |
简介 | CardJIRA lets you print cards from issues on your agile board, in saved JQL filters or single issues. #ScratchYourOwnItch |
文件大小 | 78.32 KB |
安装次数 | 43 |
当前版本 | v1.5.14.0 |
更新时间 | 2023-04-16 |
上架时间 | 2018-05-09 |
评分 | 3.67/5 共6次评分 |
开发者 | Tomislav Jerković (cardjira) |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://cardjira.yeahkovic.de/ |
支持的语言 | 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" ] } |