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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में Background Colors Cards for Trello एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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