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.…

Τι είναι το Background Colors Cards for Trello;

Το Background Colors Cards for Trello είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον nikey.es, και η κύρια λειτουργία του είναι "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.…".

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

screenshot

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

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

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

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Background Colors Cards for Trello Background Colors Cards for Trello
ID gbpnfdnpkiogmaicmknplgedbcjndaaf
Επίσημο URL https://chromewebstore.google.com/detail/background-colors-cards-f/gbpnfdnpkiogmaicmknplgedbcjndaaf
Περιγραφή 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.…
Μέγεθος Αρχείου 50.04 KB
Αριθμός Εγκαταστάσεων 1,297
Τρέχουσα Έκδοση 0.2
Τελευταία Ενημέρωση 2014-03-21
Ημερομηνία Δημοσίευσης 2014-03-21
Αξιολόγηση 3.20/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής nikey.es
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    ]
}