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"입니다.

확장 프로그램 스크린샷

screenshot

Print TFS Work Items 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Print TFS Work Items Print TFS Work Items
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"
            ]
        }
    ]
}