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ファイルをダウンロード

Trello Board Printer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}