TFS Effort Calculator

Calculates the total effort on the backlog

什么是TFS Effort Calculator?

TFS Effort Calculator是由rycornell开发的Chrome扩展程序,该扩展的主要功能是“Calculates the total effort on the backlog”。

扩展截图

screenshot

下载TFS Effort Calculator扩展crx文件

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