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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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).
확장 프로그램 기본 정보
이름 | Print TFS_2015 Work Items |
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" ] } ] } |