Visual Enhancements for Trello
Background colours and headers for Trello cards
Visual Enhancements for Trello là gì?
Visual Enhancements for Trello là một tiện ích mở rộng Chrome được phát triển bởi Sam Lanning, và tính năng chính của nó là "Background colours and headers for Trello cards".
Ả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 Visual Enhancements for Trello
Tải xuống các tệp mở rộng Visual Enhancements for Trello 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 is an Open Source project, and the source code can be found on GitHub: https://github.com/samlanning/trello-enhancements Customize the look of your Trello boards by enabling card background colors (taken from labels) and header cards. You can try out this extension on the example board: https://trello.com/b/S3asr5Or/visual-enhancements-demo ## Instructions ### Headers: To display headers, add "--" at the start and end of the text for your card. If this card has a label, then the color of the first label will be used as the color for the header text ### Background Colors If this card has a label, then the background color will be based on the color of the first label. If you only have one label, then that label will be hidden, otherwise you'll still be able to see all the labels displayed.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Visual Enhancements for Trello |
ID | ellpgcibalbljpeklapejdlflnfpiiok |
URL Chính Thức | https://chromewebstore.google.com/detail/visual-enhancements-for-t/ellpgcibalbljpeklapejdlflnfpiiok |
Mô tả | Background colours and headers for Trello cards |
Kích Thước Tệp | 14.22 KB |
Số Lần Cài Đặt | 618 |
Phiên Bản Hiện Tại | 1.0.0.2 |
Cập Nhật Lần Cuối | 2018-12-01 |
Ngày Phát Hành | 2018-11-30 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Sam Lanning |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/samlanning/trello-enhancements |
URL Trang Trợ Giúp | https://github.com/samlanning/trello-enhancements/issues |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Visual Enhancements for Trello", "version": "1.0.0.2", "description": "Background colours and headers for Trello cards", "manifest_version": 2, "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "css": [ "content.css" ], "js": [ "contentScript.js" ] } ] } |