Trello Board Printer
Print customized cards from your Trello board.
Trello Board Printer là gì?
Trello Board Printer là một tiện ích mở rộng Chrome được phát triển bởi https://www.wizaro.com, và tính năng chính của nó là "Print customized cards from your Trello board.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Trello Board Printer
Tải xuống các tệp mở rộng Trello Board Printer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This extension allows to print the customized cards from your Trello board. It allows to save selected options, which makes it easier to print your cards. Those options are saved in your chrome storage, and will automatically be synced to any Chrome browser that the user is logged into, provided the user has sync enabled. Supported features: - Authorized/Deauthorize Trello access through API - Print cards without being on the Trello board - Choose the Trello board to print - Choose the Trello list from the board to print - Print your cards from the board, list, or select individual cards Supported options: - Print cards in color set in the Trello board (label color) - Print cards with label name set in the Trello board (label value) - Change cards content font size - Change cards font family I am always available for new features request and ideas, so please do not hesitate to contact me. Please also provide your feedback. Follow me on twitter: http://www.twitter.com/wizaro Release log: 1.0.2 - Fixed unsupported 'sky' card color 1.0.1 - Fixed card label value 1.0.0 - Initial release
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Trello Board Printer |
ID | jbgpfjbmmlcaicpeimjggdppephemamf |
URL Chính Thức | https://chromewebstore.google.com/detail/trello-board-printer/jbgpfjbmmlcaicpeimjggdppephemamf |
Mô tả | Print customized cards from your Trello board. |
Kích Thước Tệp | 315 KB |
Số Lần Cài Đặt | 1,409 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2017-02-01 |
Ngày Phát Hành | 2017-01-31 |
Đánh Giá | 1.50/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | https://www.wizaro.com |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "manifest_version": 2, "version": "1.0.2", "name": "Trello Board Printer", "options_page": "src\/options.html", "permissions": [ "activeTab", "storage" ], "short_name": "Trello Board Printer", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Print customized cards from your Trello board.", "web_accessible_resources": [ "src\/options.html", "src\/popup.html" ], "background": { "scripts": [ "src\/js\/background.js" ] }, "browser_action": { "default_icon": "src\/icon.png", "default_popup": "src\/popup.html", "default_title": "Trello Board Printer" }, "content_scripts": [ { "js": [ "lib\/jquery.min.js" ], "matches": [ "https:\/\/trello.com\/b\/*" ], "run_at": "document_idle" } ], "icons": { "128": "src\/icon.png" } } |