Visual Enhancements for Trello

Background colours and headers for Trello cards

Wat is Visual Enhancements for Trello?

Visual Enhancements for Trello is een Chrome-extensie ontwikkeld door Sam Lanning, en de belangrijkste functie is "Background colours and headers for Trello cards".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Visual Enhancements for Trello

Download Visual Enhancements for Trello-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Visual Enhancements for Trello Visual Enhancements for Trello
ID ellpgcibalbljpeklapejdlflnfpiiok
Officiële URL https://chromewebstore.google.com/detail/visual-enhancements-for-t/ellpgcibalbljpeklapejdlflnfpiiok
Beschrijving Background colours and headers for Trello cards
Bestandsgrootte 14.22 KB
Aantal Installaties 618
Huidige Versie 1.0.0.2
Laatst Bijgewerkt 2018-12-01
Publicatiedatum 2018-11-30
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Sam Lanning
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/samlanning/trello-enhancements
Help Pagina-URL https://github.com/samlanning/trello-enhancements/issues
Ondersteunde Talen 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"
            ]
        }
    ]
}