Print TFS Work Items

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

¿Qué es Print TFS Work Items?

Print TFS Work Items es una extensión de Chrome desarrollada por nikosananikov, y su función principal es "This extension allows you to print TFS Work Items right from your Chrome".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Print TFS Work Items

Descarga archivos de extensión Print TFS Work Items en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Print TFS Work Items Print TFS Work Items
ID focfnfefaagmhgijdfkbhjjkpoepmfhl
URL Oficial https://chrome.google.com/webstore/detail/print-tfs-work-items/focfnfefaagmhgijdfkbhjjkpoepmfhl
Descripción This extension allows you to print TFS Work Items right from your Chrome
Tamaño del Archivo 204 KB
Cantidad de Instalaciones 270
Versión Actual 1.95
Última Actualización 2015-10-30
Fecha de Publicación 2015-10-30
Calificación 4.43/5 Total de 7 Calificaciones
Desarrollador nikosananikov
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}