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에 의해 개발된 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.…"입니다.

확장 프로그램 스크린샷

screenshot

Background Colors Cards for Trello 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}