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
擴展基本資訊
名稱 | Trello Card Printer |
ID | dakpbdiplbbpkiejkbdebphiajboajic |
官方網址 | 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" ] } } |