TFS PBI Print

Printing a TFS PBI

TFS PBI Printคืออะไร?

TFS PBI Print เป็นส่วนขยายของ Chrome ที่พัฒนาโดย RemcoS และคุณลักษณะหลักของมันคือ "Printing a TFS PBI"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย TFS PBI Print ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Print a Product Backlog Item from a TFS Scrum productbacklog.
Sources on github https://github.com/RemcoSpil/TFS-PBI-Print

Change log 0.0.3
- Support for printing a bug added

Change log 0.0.2
- Support for Scrum procestemplate
- Support for TFS2013 / Visualstudio.com                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ TFS PBI Print TFS PBI Print
ID lnpgclcdbomjnejnkndfhigplabjekje
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/tfs-pbi-print/lnpgclcdbomjnejnkndfhigplabjekje
คำอธิบาย Printing a TFS PBI
ขนาดไฟล์ 47.42 KB
จำนวนการติดตั้ง 15
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2016-05-04
วันที่เผยแพร่ 2016-05-04
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา RemcoS
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TFS PBI Print",
    "version": "0.0.3",
    "description": "Printing a TFS PBI",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "page_action": {
        "default_title": "Print a PBI",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_security_policy": "script-src 'self'; img-src *; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/get_pbi_info.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs"
    ]
}