Visual Enhancements for Trello
Background colours and headers for Trello cards
Visual Enhancements for Trelloคืออะไร?
Visual Enhancements for Trello เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sam Lanning และคุณลักษณะหลักของมันคือ "Background colours and headers for Trello cards"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Visual Enhancements for Trello
ดาวน์โหลดไฟล์ส่วนขยาย Visual Enhancements for Trello ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Visual Enhancements for Trello |
ID | ellpgcibalbljpeklapejdlflnfpiiok |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/visual-enhancements-for-t/ellpgcibalbljpeklapejdlflnfpiiok |
คำอธิบาย | Background colours and headers for Trello cards |
ขนาดไฟล์ | 14.22 KB |
จำนวนการติดตั้ง | 618 |
เวอร์ชันปัจจุบัน | 1.0.0.2 |
อัปเดตครั้งล่าสุด | 2018-12-01 |
วันที่เผยแพร่ | 2018-11-30 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Sam Lanning |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/samlanning/trello-enhancements |
URL หน้าช่วยเหลือ | https://github.com/samlanning/trello-enhancements/issues |
ภาษาที่รองรับ | 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" ] } ] } |