Visual Enhancements for Trello

Background colours and headers for Trello cards

Qu'est-ce que Visual Enhancements for Trello ?

Visual Enhancements for Trello est une extension Chrome développée par Sam Lanning, et sa fonction principale est "Background colours and headers for Trello cards".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Visual Enhancements for Trello

Téléchargez les fichiers d'extension Visual Enhancements for Trello au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Visual Enhancements for Trello Visual Enhancements for Trello
ID ellpgcibalbljpeklapejdlflnfpiiok
URL Officiel https://chromewebstore.google.com/detail/visual-enhancements-for-t/ellpgcibalbljpeklapejdlflnfpiiok
Description Background colours and headers for Trello cards
Taille du Fichier 14.22 KB
Nombre d'Installations 618
Version Actuelle 1.0.0.2
Dernière Mise à Jour 2018-12-01
Date de Publication 2018-11-30
Évaluation 5.00/5 Total 3 Évaluations
Développeur Sam Lanning
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/samlanning/trello-enhancements
URL de la Page d'Aide https://github.com/samlanning/trello-enhancements/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}