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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" ] } ] } |