TFS Effort Calculator

Calculates the total effort on the backlog

TFS Effort Calculator क्या है?

TFS Effort Calculator rycornell द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Calculates the total effort on the backlog"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में TFS Effort Calculator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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:\/\/*\/*"
            ]
        }
    ]
}