Trello Card Printer

This extension populates print-ready cards for use with Agile sprint boards.

Trello Card Printerとは何ですか?

Trello Card Printerはtheshepsによって開発されたChromeの拡張機能で、その主な機能は「This extension populates print-ready cards for use with Agile sprint boards.」です。

拡張機能のスクリーンショット

screenshot

Trello Card Printer拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This simple chrome extension generates print-ready cards for your sprint backlog.  It integrates seamlessly into your Trello board, and allows for the selection of different colours and categories for your tickets.

Recent Changes:
- Adds some other fields woo!
- Adds fix to pull changes from local storage                    

拡張機能の基本情報

名前 Trello Card Printer Trello Card Printer
ID dakpbdiplbbpkiejkbdebphiajboajic
公式URL https://chromewebstore.google.com/detail/trello-card-printer/dakpbdiplbbpkiejkbdebphiajboajic
説明 This extension populates print-ready cards for use with Agile sprint boards.
ファイルサイズ 251 KB
インストール数 852
現在のバージョン 2.4
最終更新日 2019-06-08
公開日 2019-06-08
評価 3.75/5 合計 8 レビュー
開発者 thesheps
支払い方法 free
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello Card Printer",
    "description": "This extension populates print-ready cards for use with Agile sprint boards.",
    "version": "2.4",
    "short_name": "Trello Card Printer",
    "browser_action": {
        "default_icon": "src\/img\/icon.png",
        "default_popup": "src\/popup.html",
        "default_title": "Print Trello Cards"
    },
    "icons": {
        "128": "src\/img\/extension-icon.png"
    },
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "src\/settings.html",
        "src\/popup.html"
    ],
    "options_page": "src\/settings.html",
    "content_scripts": [
        {
            "js": [
                "lib\/jquery.min.js"
            ],
            "matches": [
                "https:\/\/trello.com\/b\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "src\/scripts\/background.js"
        ]
    }
}