Print TFS_2015 Work Items

This extension allows you to print TFS 2015 Work Items right from your Chrome.

Что такое Print TFS_2015 Work Items?

Print TFS_2015 Work Items - это расширение Chrome, разработанное nikosananikov, и его основная функция - "This extension allows you to print TFS 2015 Work Items right from your Chrome.".

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

screenshot

Скачать файл CRX расширения Print TFS_2015 Work Items

Скачайте файлы расширений Print TFS_2015 Work Items в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        For that to print WIs you need:
1. TFS should be of 2015 version
2. You need to have query that finds all tasks you want to print
3. You should have a printer :)

What is not working: if you use some dynamic values in your queries those won't work (i.e. 'Iteration Path' = @currentIteration won't work for now).                    

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

Название Print TFS_2015 Work Items Print TFS_2015 Work Items
ID bojafehhfbgmfjaanlklipookoihpped
Официальный URL https://chromewebstore.google.com/detail/print-tfs2015-work-items/bojafehhfbgmfjaanlklipookoihpped
Описание This extension allows you to print TFS 2015 Work Items right from your Chrome.
Размер файла 92.41 KB
Количество установок 43
Текущая Версия 1.2.5
Последнее Обновление 2015-12-29
Дата публикации 2015-12-29
Рейтинг 5.00/5 Всего 2 оценок
Разработчик nikosananikov
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Print TFS_2015 Work Items",
    "description": "This extension allows you to print TFS 2015 Work Items right from your Chrome.",
    "version": "1.2.5",
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Print your tasks!"
    },
    "icons": {
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "tabs",
        "declarativeContent"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "print.js",
                "jquery-2.1.3.min.js"
            ],
            "css": [
                "progress.css"
            ]
        }
    ]
}