Print TFS Work Items

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

O que é Print TFS Work Items?

Print TFS Work Items é uma extensão do Chrome desenvolvida por nikosananikov, e sua principal característica é "This extension allows you to print TFS Work Items right from your Chrome".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Print TFS Work Items

Baixe arquivos de extensão Print TFS Work Items no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        The easiest way to print your Work Items from TFS. Though there are some rules (yet):
Your UI, BE, QC tasks should have corresponding tags ('UI', 'BE', 'QC') and you have to sort your backlog table columns in next order: 'ID' -> 'Title -> 'Assigned To' -> 'Remaining Work' -> 'Effort' -> 'Tags'. That's all. Go to TFS, click extension icon, select type of WI you want to get and click 'Print'.
Fixed compatibility issues; added Back To TFS button; improved printed tasks UX.                    

Informações Básicas da Extensão

Nome Print TFS Work Items Print TFS Work Items
ID focfnfefaagmhgijdfkbhjjkpoepmfhl
URL Oficial https://chrome.google.com/webstore/detail/print-tfs-work-items/focfnfefaagmhgijdfkbhjjkpoepmfhl
Descrição This extension allows you to print TFS Work Items right from your Chrome
Tamanho do Arquivo 204 KB
Contagem de Instalações 270
Versão Atual 1.95
Última Atualização 2015-10-30
Data de Publicação 2015-10-30
Classificação 4.43/5 Total de 7 Avaliações
Desenvolvedor nikosananikov
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Print TFS Work Items",
    "description": "This extension allows you to print TFS Work Items right from your Chrome",
    "version": "1.95",
    "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"
            ]
        }
    ]
}