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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nikosananikov และคุณลักษณะหลักของมันคือ "This extension allows you to print TFS Work Items right from your Chrome"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Print TFS Work Items

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}