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”。
擴展截圖
下載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. 擴展基本資訊
| 名稱 | |
| ID | ndpmdafdlnmckfkojpenepgcpidhifif |
| 官方網址 | 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:\/\/*\/*"
]
}
]
} | |