TFS Effort Calculator

Calculates the total effort on the backlog

Wat is TFS Effort Calculator?

TFS Effort Calculator is een Chrome-extensie ontwikkeld door rycornell, en de belangrijkste functie is "Calculates the total effort on the backlog".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie TFS Effort Calculator

Download TFS Effort Calculator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam TFS Effort Calculator TFS Effort Calculator
ID ndpmdafdlnmckfkojpenepgcpidhifif
Officiële URL https://chrome.google.com/webstore/detail/tfs-effort-calculator/ndpmdafdlnmckfkojpenepgcpidhifif
Beschrijving Calculates the total effort on the backlog
Bestandsgrootte 34.75 KB
Aantal Installaties 10
Huidige Versie 1.1
Laatst Bijgewerkt 2015-04-05
Publicatiedatum 2015-04-05
Beoordeling 3.67/5 Totaal 3 Beoordelingen
Ontwikkelaar rycornell
Betalingswijze free
Ondersteunde Talen 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:\/\/*\/*"
            ]
        }
    ]
}