TFS PBI Print
Printing a TFS PBI
Cos'è TFS PBI Print?
TFS PBI Print è un'estensione di Chrome sviluppata da RemcoS, e la sua funzione principale è "Printing a TFS PBI".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TFS PBI Print
Scarica i file di estensione TFS PBI Print in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | lnpgclcdbomjnejnkndfhigplabjekje |
| URL Ufficiale | https://chrome.google.com/webstore/detail/tfs-pbi-print/lnpgclcdbomjnejnkndfhigplabjekje |
| Descrizione | Printing a TFS PBI |
| Dimensione del File | 47.42 KB |
| Conteggio Installazioni | 15 |
| Versione Corrente | 0.0.3 |
| Ultimo Aggiornamento | 2016-05-04 |
| Data di Pubblicazione | 2016-05-04 |
| Valutazione | 4.00/5 Totale 1 Valutazioni |
| Sviluppatore | RemcoS |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |