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文件

下载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.                    

扩展基本信息

名称 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"
            ]
        }
    ]
}