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
官方網址 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"
    }
}