TFS PBI Print
Printing a TFS PBI
What is TFS PBI Print?
TFS PBI Print is a Chrome extension developed by RemcoS, and its main feature is "Printing a TFS PBI".
Extension Screenshots
Download TFS PBI Print Extension CRX File
Download TFS PBI Print extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | lnpgclcdbomjnejnkndfhigplabjekje |
Official URL | https://chrome.google.com/webstore/detail/tfs-pbi-print/lnpgclcdbomjnejnkndfhigplabjekje |
Description | Printing a TFS PBI |
File Size | 47.42 KB |
Installation Count | 15 |
Current Version | 0.0.3 |
Last Updated | 2016-05-04 |
Publish Date | 2016-05-04 |
Rating | 4.00/5 Total 1 Ratings |
Developer | RemcoS |
Payment Type | free |
Supported Languages | 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" ] } |