Trello Board Printer

Print customized cards from your Trello board.

Trello Board Printer란 무엇입니까?

Trello Board Printer은(는) https://www.wizaro.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Print customized cards from your Trello board."입니다.

확장 프로그램 스크린샷

screenshot

Trello Board Printer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension allows to print the customized cards from your Trello board.
It allows to save selected options, which makes it easier to print your cards.
Those options are saved in your chrome storage, and will automatically be synced to any Chrome browser that the user is logged into, provided the user has sync enabled. 

Supported features:
- Authorized/Deauthorize Trello access through API
- Print cards without being on the Trello board
- Choose the Trello board to print
- Choose the Trello list from the board to print
- Print your cards from the board, list, or select individual cards

Supported options:
- Print cards in color set in the Trello board (label color)
- Print cards with label name set in the Trello board (label value)
- Change cards content font size
- Change cards font family

I am always available for new features request and ideas, so please do not hesitate to contact me.
Please also provide your feedback.

Follow me on twitter: http://www.twitter.com/wizaro

Release log:
1.0.2 - Fixed unsupported 'sky' card color
1.0.1 - Fixed card label value
1.0.0 - Initial release                    

확장 프로그램 기본 정보

이름 Trello Board Printer Trello Board Printer
ID jbgpfjbmmlcaicpeimjggdppephemamf
공식 URL https://chromewebstore.google.com/detail/trello-board-printer/jbgpfjbmmlcaicpeimjggdppephemamf
설명 Print customized cards from your Trello board.
파일 크기 315 KB
설치 횟수 1,409
현재 버전 1.0.2
최근 업데이트 2017-02-01
출시 날짜 2017-01-31
평점 1.50/5 총 10 개의 평점
개발자 https://www.wizaro.com
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "manifest_version": 2,
    "version": "1.0.2",
    "name": "Trello Board Printer",
    "options_page": "src\/options.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "short_name": "Trello Board Printer",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Print customized cards from your Trello board.",
    "web_accessible_resources": [
        "src\/options.html",
        "src\/popup.html"
    ],
    "background": {
        "scripts": [
            "src\/js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "src\/icon.png",
        "default_popup": "src\/popup.html",
        "default_title": "Trello Board Printer"
    },
    "content_scripts": [
        {
            "js": [
                "lib\/jquery.min.js"
            ],
            "matches": [
                "https:\/\/trello.com\/b\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "128": "src\/icon.png"
    }
}