TFS Enhancements

This extension enhances Team Foundation Service sites

TFS Enhancements란 무엇입니까?

TFS Enhancements은(는) http://www.codethug.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension enhances Team Foundation Service sites"입니다.

확장 프로그램 스크린샷

screenshot

TFS Enhancements 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This provides enhancements to Team Foundation Services found at visualstudio.com.  For information about creating a TFS project, see http://tfs.visualstudio.com/.

This does not require any server-side setup or installation.

Features:
- Blocked Tasks have a red left border on the task board
- Description Textboxes can be resized vertically                    

확장 프로그램 기본 정보

이름 TFS Enhancements TFS Enhancements
ID fnkmfpilihpmfooacmbicbphjpgichjl
공식 URL https://chrome.google.com/webstore/detail/tfs-enhancements/fnkmfpilihpmfooacmbicbphjpgichjl
설명 This extension enhances Team Foundation Service sites
파일 크기 129 KB
설치 횟수 276
현재 버전 1.0.7
최근 업데이트 2014-03-03
출시 날짜 2014-03-03
평점 3.00/5 총 1 개의 평점
개발자 http://www.codethug.com
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/codethug/TFSChromeExtension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TFS Enhancements",
    "description": "This extension enhances Team Foundation Service sites",
    "version": "1.0.7",
    "author": "Tim Larson, @codethug",
    "homepage_url": "https:\/\/github.com\/codethug\/TFSChromeExtension",
    "icons": {
        "128": "Visual Studio 2012-128.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "settings.js",
            "eventpage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "https:\/\/*.visualstudio.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.visualstudio.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}