Print TFS_2015 Work Items
This extension allows you to print TFS 2015 Work Items right from your Chrome.
Qu'est-ce que Print TFS_2015 Work Items ?
Print TFS_2015 Work Items est une extension Chrome développée par nikosananikov, et sa fonction principale est "This extension allows you to print TFS 2015 Work Items right from your Chrome.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Print TFS_2015 Work Items
Téléchargez les fichiers d'extension Print TFS_2015 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
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).
Informations de Base sur l'Extension
Nom | Print TFS_2015 Work Items |
ID | bojafehhfbgmfjaanlklipookoihpped |
URL Officiel | https://chromewebstore.google.com/detail/print-tfs2015-work-items/bojafehhfbgmfjaanlklipookoihpped |
Description | This extension allows you to print TFS 2015 Work Items right from your Chrome. |
Taille du Fichier | 92.41 KB |
Nombre d'Installations | 43 |
Version Actuelle | 1.2.5 |
Dernière Mise à Jour | 2015-12-29 |
Date de Publication | 2015-12-29 |
Évaluation | 5.00/5 Total 2 É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_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" ] } ] } |