Print TFS Work Items

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

Qu'est-ce que Print TFS Work Items ?

Print TFS Work Items est une extension Chrome développée par nikosananikov, et sa fonction principale est "This extension allows you to print TFS Work Items right from your Chrome".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Print TFS Work Items

Téléchargez les fichiers d'extension Print TFS Work Items au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Print TFS Work Items Print TFS Work Items
ID focfnfefaagmhgijdfkbhjjkpoepmfhl
URL Officiel https://chrome.google.com/webstore/detail/print-tfs-work-items/focfnfefaagmhgijdfkbhjjkpoepmfhl
Description This extension allows you to print TFS Work Items right from your Chrome
Taille du Fichier 204 KB
Nombre d'Installations 270
Version Actuelle 1.95
Dernière Mise à Jour 2015-10-30
Date de Publication 2015-10-30
Évaluation 4.43/5 Total 7 Évaluations
Développeur nikosananikov
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}