Print TFS_2015 Work Items
This extension allows you to print TFS 2015 Work Items right from your Chrome.
什麼是Print TFS_2015 Work Items?
Print TFS_2015 Work Items是由nikosananikov開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to print TFS 2015 Work Items right from your Chrome.”。
擴展截圖
下載Print TFS_2015 Work Items擴展crx文件
下載Print TFS_2015 Work Items擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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). 擴展基本資訊
| 名稱 | |
| ID | bojafehhfbgmfjaanlklipookoihpped |
| 官方網址 | https://chromewebstore.google.com/detail/print-tfs2015-work-items/bojafehhfbgmfjaanlklipookoihpped |
| 簡介 | This extension allows you to print TFS 2015 Work Items right from your Chrome. |
| 檔案大小 | 92.41 KB |
| 安裝次數 | 43 |
| 目前版本 | 1.2.5 |
| 更新時間 | 2015-12-29 |
| 上架時間 | 2015-12-29 |
| 評分 | 5.00/5 共 2 次評分 |
| 開發者 | nikosananikov |
| 付費類型 | free |
| 支援的語言 | 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"
]
}
]
} | |