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 là gì?

Background Colors Cards for Trello là một tiện ích mở rộng Chrome được phát triển bởi nikey.es, và tính năng chính của nó là "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.…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Background Colors Cards for Trello

Tải xuống các tệp mở rộng Background Colors Cards for Trello dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Background Colors Cards for Trello Background Colors Cards for Trello
ID gbpnfdnpkiogmaicmknplgedbcjndaaf
URL Chính Thức https://chromewebstore.google.com/detail/background-colors-cards-f/gbpnfdnpkiogmaicmknplgedbcjndaaf
Mô tả 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.…
Kích Thước Tệp 50.04 KB
Số Lần Cài Đặt 1,297
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2014-03-21
Ngày Phát Hành 2014-03-21
Đánh Giá 3.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển nikey.es
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}