Trello Card Printer
This extension populates print-ready cards for use with Agile sprint boards.
什么是Trello Card Printer?
Trello Card Printer是由thesheps开发的Chrome扩展程序,该扩展的主要功能是“This extension populates print-ready cards for use with Agile sprint boards.”。
扩展截图
下载Trello Card Printer扩展crx文件
下载Trello Card Printer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This simple chrome extension generates print-ready cards for your sprint backlog. It integrates seamlessly into your Trello board, and allows for the selection of different colours and categories for your tickets.
Recent Changes:
- Adds some other fields woo!
- Adds fix to pull changes from local storage 扩展基本信息
| 名称 | |
| ID | dakpbdiplbbpkiejkbdebphiajboajic |
| 官方URL | https://chromewebstore.google.com/detail/trello-card-printer/dakpbdiplbbpkiejkbdebphiajboajic |
| 简介 | This extension populates print-ready cards for use with Agile sprint boards. |
| 文件大小 | 251 KB |
| 安装次数 | 852 |
| 当前版本 | 2.4 |
| 更新时间 | 2019-06-08 |
| 上架时间 | 2019-06-08 |
| 评分 | 3.75/5 共8次评分 |
| 开发者 | thesheps |
| 付费类型 | free |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Trello Card Printer",
"description": "This extension populates print-ready cards for use with Agile sprint boards.",
"version": "2.4",
"short_name": "Trello Card Printer",
"browser_action": {
"default_icon": "src\/img\/icon.png",
"default_popup": "src\/popup.html",
"default_title": "Print Trello Cards"
},
"icons": {
"128": "src\/img\/extension-icon.png"
},
"permissions": [
"activeTab"
],
"web_accessible_resources": [
"src\/settings.html",
"src\/popup.html"
],
"options_page": "src\/settings.html",
"content_scripts": [
{
"js": [
"lib\/jquery.min.js"
],
"matches": [
"https:\/\/trello.com\/b\/*"
],
"run_at": "document_idle"
}
],
"background": {
"scripts": [
"src\/scripts\/background.js"
]
}
} | |