Trello Card Printer

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

Trello Card Printer là gì?

Trello Card Printer là một tiện ích mở rộng Chrome được phát triển bởi thesheps, và tính năng chính của nó là "This extension populates print-ready cards for use with Agile sprint boards.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Trello Card Printer

Tải xuống các tệp mở rộng Trello Card Printer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Trello Card Printer Trello Card Printer
ID dakpbdiplbbpkiejkbdebphiajboajic
URL Chính Thức https://chromewebstore.google.com/detail/trello-card-printer/dakpbdiplbbpkiejkbdebphiajboajic
Mô tả This extension populates print-ready cards for use with Agile sprint boards.
Kích Thước Tệp 251 KB
Số Lần Cài Đặt 852
Phiên Bản Hiện Tại 2.4
Cập Nhật Lần Cuối 2019-06-08
Ngày Phát Hành 2019-06-08
Đánh Giá 3.75/5 Tổng số 8 Đánh Giá
Nhà Phát Triển thesheps
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}