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