TFS PBI Print
Printing a TFS PBI
什麼是TFS PBI Print?
TFS PBI Print是由RemcoS開發的Chrome擴展程式,該擴展的主要功能是“Printing a TFS PBI”。
擴展截圖
下載TFS PBI Print擴展crx文件
下載TFS PBI Print擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | lnpgclcdbomjnejnkndfhigplabjekje |
| 官方網址 | https://chrome.google.com/webstore/detail/tfs-pbi-print/lnpgclcdbomjnejnkndfhigplabjekje |
| 簡介 | Printing a TFS PBI |
| 檔案大小 | 47.42 KB |
| 安裝次數 | 15 |
| 目前版本 | 0.0.3 |
| 更新時間 | 2016-05-04 |
| 上架時間 | 2016-05-04 |
| 評分 | 4.00/5 共 1 次評分 |
| 開發者 | RemcoS |
| 付費類型 | free |
| 支援的語言 | 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"
]
} | |