YouTrack Issue Cards Printer

Print issues from JetBrains YouTrack as cards for physical scrum board

Что такое YouTrack Issue Cards Printer?

YouTrack Issue Cards Printer - это расширение Chrome, разработанное Maciej Radzikowski, и его основная функция - "Print issues from JetBrains YouTrack as cards for physical scrum board".

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

screenshot

Скачать файл CRX расширения YouTrack Issue Cards Printer

Скачайте файлы расширений YouTrack Issue Cards Printer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Create beautiful cards for scrum board from YouTrack issues search results with a single click.
Customize layout and fields to match your needs.

- Go to your YouTrack issues list.
- Filter issues you want to print.
- Click extension icon or print button above issues list to print cards.

Please feel free to suggest new features and report bugs on GitHub.                    

Основная информация о расширении

Название YouTrack Issue Cards Printer YouTrack Issue Cards Printer
ID pjcejghclgihlhinleocjojdalhnhckp
Официальный URL https://chromewebstore.google.com/detail/youtrack-issue-cards-prin/pjcejghclgihlhinleocjojdalhnhckp
Описание Print issues from JetBrains YouTrack as cards for physical scrum board
Размер файла 34.21 KB
Количество установок 157
Текущая Версия 0.4.1
Последнее Обновление 2019-05-04
Дата публикации 2019-05-04
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Maciej Radzikowski
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/m-radzikowski/youtrack-issue-cards-printer
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTrack Issue Cards Printer",
    "description": "Print issues from JetBrains YouTrack as cards for physical scrum board",
    "version": "0.4.1",
    "author": "Maciej Radzikowski",
    "homepage_url": "https:\/\/github.com\/m-radzikowski\/youtrack-issue-cards-printer",
    "icons": {
        "16": "resources\/icon\/icon16.png",
        "32": "resources\/icon\/icon32.png",
        "48": "resources\/icon\/icon48.png",
        "128": "resources\/icon\/icon128.png"
    },
    "background": {
        "scripts": [
            "gtm.js",
            "background\/show-page-action.js",
            "background\/singleton.js",
            "background\/page-action.js"
        ],
        "persistent": false
    },
    "page_action": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/replace-print-button.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "",
        "storage",
        "declarativeContent"
    ],
    "options_page": "options.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/code.jquery.com https:\/\/cdnjs.cloudflare.com https:\/\/stackpath.bootstrapcdn.com https:\/\/www.googletagmanager.com https:\/\/www.google-analytics.com; object-src 'self'"
}