Trello Card Printer

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

Что такое Trello Card Printer?

Trello Card Printer - это расширение Chrome, разработанное thesheps, и его основная функция - "This extension populates print-ready cards for use with Agile sprint boards.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Trello Card Printer

Скачайте файлы расширений 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"
        ]
    }
}