Visual Enhancements for Trello
Background colours and headers for Trello cards
Was ist Visual Enhancements for Trello?
Visual Enhancements for Trello ist eine Chrome-Erweiterung, die von Sam Lanning entwickelt wurde, und ihr Hauptmerkmal ist "Background colours and headers for Trello cards".
Erweiterungsscreenshots
Visual Enhancements for Trello-Erweiterungs-CRX-Datei herunterladen
Laden Sie Visual Enhancements for Trello-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Visual Enhancements for Trello |
ID | ellpgcibalbljpeklapejdlflnfpiiok |
Offizielle URL | https://chromewebstore.google.com/detail/visual-enhancements-for-t/ellpgcibalbljpeklapejdlflnfpiiok |
Beschreibung | Background colours and headers for Trello cards |
Dateigröße | 14.22 KB |
Installationsanzahl | 618 |
Aktuelle Version | 1.0.0.2 |
Letztes Update | 2018-12-01 |
Veröffentlichungsdatum | 2018-11-30 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Sam Lanning |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/samlanning/trello-enhancements |
Hilfeseite URL | https://github.com/samlanning/trello-enhancements/issues |
Unterstützte Sprachen | 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" ] } ] } |