Visual Enhancements for Trello
Background colours and headers for Trello cards
Visual Enhancements for Trello क्या है?
Visual Enhancements for Trello Sam Lanning द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Background colours and headers for Trello cards"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Visual Enhancements for Trello एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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" ] } ] } |