Visual Enhancements for Trello

Background colours and headers for Trello cards

Τι είναι το Visual Enhancements for Trello;

Το Visual Enhancements for Trello είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sam Lanning, και η κύρια λειτουργία του είναι "Background colours and headers for Trello cards".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Visual Enhancements for Trello

Λήψη αρχείων επέκτασης Visual Enhancements for Trello σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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 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"
            ]
        }
    ]
}