TFS PBI Print
Printing a TFS PBI
Qu'est-ce que TFS PBI Print ?
TFS PBI Print est une extension Chrome développée par RemcoS, et sa fonction principale est "Printing a TFS PBI".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TFS PBI Print
Téléchargez les fichiers d'extension TFS PBI Print 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
Print a Product Backlog Item from a TFS Scrum productbacklog. Sources on github https://github.com/RemcoSpil/TFS-PBI-Print Change log 0.0.3 - Support for printing a bug added Change log 0.0.2 - Support for Scrum procestemplate - Support for TFS2013 / Visualstudio.com
Informations de Base sur l'Extension
Nom | |
ID | lnpgclcdbomjnejnkndfhigplabjekje |
URL Officiel | https://chrome.google.com/webstore/detail/tfs-pbi-print/lnpgclcdbomjnejnkndfhigplabjekje |
Description | Printing a TFS PBI |
Taille du Fichier | 47.42 KB |
Nombre d'Installations | 15 |
Version Actuelle | 0.0.3 |
Dernière Mise à Jour | 2016-05-04 |
Date de Publication | 2016-05-04 |
Évaluation | 4.00/5 Total 1 Évaluations |
Développeur | RemcoS |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TFS PBI Print", "version": "0.0.3", "description": "Printing a TFS PBI", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "page_action": { "default_title": "Print a PBI", "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "persistent": false, "scripts": [ "js\/background.js" ] }, "content_security_policy": "script-src 'self'; img-src *; object-src 'self'", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/get_pbi_info.js" ], "run_at": "document_idle", "all_frames": false } ], "permissions": [ "tabs" ] } |