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 |
| 公式URL | 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"
]
}
]
} | |