TFS Effort Calculator

Calculates the total effort on the backlog

Was ist TFS Effort Calculator?

TFS Effort Calculator ist eine Chrome-Erweiterung, die von rycornell entwickelt wurde, und ihr Hauptmerkmal ist "Calculates the total effort on the backlog".

Erweiterungsscreenshots

screenshot

TFS Effort Calculator-Erweiterungs-CRX-Datei herunterladen

Laden Sie TFS Effort Calculator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name TFS Effort Calculator TFS Effort Calculator
ID ndpmdafdlnmckfkojpenepgcpidhifif
Offizielle URL https://chrome.google.com/webstore/detail/tfs-effort-calculator/ndpmdafdlnmckfkojpenepgcpidhifif
Beschreibung Calculates the total effort on the backlog
Dateigröße 34.75 KB
Installationsanzahl 10
Aktuelle Version 1.1
Letztes Update 2015-04-05
Veröffentlichungsdatum 2015-04-05
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler rycornell
Zahlungsart free
Unterstützte Sprachen 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:\/\/*\/*"
            ]
        }
    ]
}