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