Print TFS Work Items
This extension allows you to print TFS Work Items right from your Chrome
Print TFS Work Itemsとは何ですか?
Print TFS Work Itemsはnikosananikovによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to print TFS Work Items right from your Chrome」です。
拡張機能のスクリーンショット
Print TFS Work Items拡張機能のCRXファイルをダウンロード
Print TFS Work Items拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The easiest way to print your Work Items from TFS. Though there are some rules (yet):
Your UI, BE, QC tasks should have corresponding tags ('UI', 'BE', 'QC') and you have to sort your backlog table columns in next order: 'ID' -> 'Title -> 'Assigned To' -> 'Remaining Work' -> 'Effort' -> 'Tags'. That's all. Go to TFS, click extension icon, select type of WI you want to get and click 'Print'.
Fixed compatibility issues; added Back To TFS button; improved printed tasks UX. 拡張機能の基本情報
| 名前 | |
| ID | focfnfefaagmhgijdfkbhjjkpoepmfhl |
| 公式URL | https://chrome.google.com/webstore/detail/print-tfs-work-items/focfnfefaagmhgijdfkbhjjkpoepmfhl |
| 説明 | This extension allows you to print TFS Work Items right from your Chrome |
| ファイルサイズ | 204 KB |
| インストール数 | 270 |
| 現在のバージョン | 1.95 |
| 最終更新日 | 2015-10-30 |
| 公開日 | 2015-10-30 |
| 評価 | 4.43/5 合計 7 レビュー |
| 開発者 | nikosananikov |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Print TFS Work Items",
"description": "This extension allows you to print TFS Work Items right from your Chrome",
"version": "1.95",
"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"
]
}
]
} | |