TFS Effort Calculator

Calculates the total effort on the backlog

TFS Effort Calculatorคืออะไร?

TFS Effort Calculator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rycornell และคุณลักษณะหลักของมันคือ "Calculates the total effort on the backlog"

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

screenshot

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

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

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

                        This extension calculates the total effort for the selected sprint and for the backlog.                    

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

ชื่อ TFS Effort Calculator TFS Effort Calculator
ID ndpmdafdlnmckfkojpenepgcpidhifif
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/tfs-effort-calculator/ndpmdafdlnmckfkojpenepgcpidhifif
คำอธิบาย Calculates the total effort on the backlog
ขนาดไฟล์ 34.75 KB
จำนวนการติดตั้ง 10
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2015-04-05
วันที่เผยแพร่ 2015-04-05
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา rycornell
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TFS Effort Calculator",
    "description": "Calculates the total effort on the backlog",
    "version": "1.1",
    "browser_action": {
        "default_icon": "calculator.png",
        "default_popup": "calc.html",
        "default_title": "TFS Effort Calculator"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "js": [
                "background.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}