Visual Enhancements for Trello
Background colours and headers for Trello cards
Co je Visual Enhancements for Trello?
Visual Enhancements for Trello je rozšíření Chrome vyvinuté Sam Lanning, a jeho hlavní funkcí je „Background colours and headers for Trello cards“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Visual Enhancements for Trello
Stáhněte si soubory rozšíření Visual Enhancements for Trello ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Visual Enhancements for Trello |
ID | ellpgcibalbljpeklapejdlflnfpiiok |
Oficiální URL | https://chromewebstore.google.com/detail/visual-enhancements-for-t/ellpgcibalbljpeklapejdlflnfpiiok |
Popis | Background colours and headers for Trello cards |
Velikost souboru | 14.22 KB |
Počet instalací | 618 |
Aktuální Verze | 1.0.0.2 |
Poslední Aktualizace | 2018-12-01 |
Datum Vydání | 2018-11-30 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | Sam Lanning |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/samlanning/trello-enhancements |
URL Stránky Nápovědy | https://github.com/samlanning/trello-enhancements/issues |
Podporované Jazyky | 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" ] } ] } |