TFS Effort Calculator
Calculates the total effort on the backlog
What is TFS Effort Calculator?
TFS Effort Calculator is a Chrome extension developed by rycornell, and its main feature is "Calculates the total effort on the backlog".
Extension Screenshots
Download TFS Effort Calculator Extension CRX File
Download TFS Effort Calculator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension calculates the total effort for the selected sprint and for the backlog.
Extension Basic Information
Name | |
ID | ndpmdafdlnmckfkojpenepgcpidhifif |
Official URL | https://chrome.google.com/webstore/detail/tfs-effort-calculator/ndpmdafdlnmckfkojpenepgcpidhifif |
Description | Calculates the total effort on the backlog |
File Size | 34.75 KB |
Installation Count | 10 |
Current Version | 1.1 |
Last Updated | 2015-04-05 |
Publish Date | 2015-04-05 |
Rating | 3.67/5 Total 3 Ratings |
Developer | rycornell |
Payment Type | free |
Supported Languages | 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:\/\/*\/*" ] } ] } |