Print TFS_2015 Work Items

This extension allows you to print TFS 2015 Work Items right from your Chrome.

Print TFS_2015 Work Items là gì?

Print TFS_2015 Work Items là một tiện ích mở rộng Chrome được phát triển bởi nikosananikov, và tính năng chính của nó là "This extension allows you to print TFS 2015 Work Items right from your Chrome.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Print TFS_2015 Work Items

Tải xuống các tệp mở rộng Print TFS_2015 Work Items dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Print TFS_2015 Work Items Print TFS_2015 Work Items
ID bojafehhfbgmfjaanlklipookoihpped
URL Chính Thức https://chromewebstore.google.com/detail/print-tfs2015-work-items/bojafehhfbgmfjaanlklipookoihpped
Mô tả This extension allows you to print TFS 2015 Work Items right from your Chrome.
Kích Thước Tệp 92.41 KB
Số Lần Cài Đặt 43
Phiên Bản Hiện Tại 1.2.5
Cập Nhật Lần Cuối 2015-12-29
Ngày Phát Hành 2015-12-29
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển nikosananikov
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}