Background Colors Cards for Trello

When you go to your boards, Chrome displays an icon in the right of the address bar to change the background colors of the cards.…

Qu'est-ce que Background Colors Cards for Trello ?

Background Colors Cards for Trello est une extension Chrome développée par nikey.es, et sa fonction principale est "When you go to your boards, Chrome displays an icon in the right of the address bar to change the background colors of the cards.…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Background Colors Cards for Trello

Téléchargez les fichiers d'extension Background Colors Cards 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

                        When you go to your boards, Chrome displays an icon in the right of the address bar to change the background colors of the cards.
The extension get the color from the card label.                    

Informations de Base sur l'Extension

Nom Background Colors Cards for Trello Background Colors Cards for Trello
ID gbpnfdnpkiogmaicmknplgedbcjndaaf
URL Officiel https://chromewebstore.google.com/detail/background-colors-cards-f/gbpnfdnpkiogmaicmknplgedbcjndaaf
Description When you go to your boards, Chrome displays an icon in the right of the address bar to change the background colors of the cards.…
Taille du Fichier 50.04 KB
Nombre d'Installations 1,297
Version Actuelle 0.2
Dernière Mise à Jour 2014-03-21
Date de Publication 2014-03-21
Évaluation 3.20/5 Total 5 Évaluations
Développeur nikey.es
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Background Colors Cards for Trello",
    "short_name": "Back Trello",
    "description": "",
    "version": "0.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "iconBackground16.png",
        "48": "iconBackground48.png",
        "128": "iconBackground128.png"
    },
    "page_action": {
        "default_icon": "iconBackground16.png",
        "default_title": "Click to Apply Background Colors Cards.\nClick Again to Clean Background Colors Cards."
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/trello.com\/*",
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "jquery.1.11.0.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "http:\/\/trello.com\/*",
        "https:\/\/trello.com\/*",
        "declarativeContent"
    ]
}