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”。
扩展截图
下载TFS Enhancements扩展crx文件
下载TFS Enhancements扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| 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"
}
]
} | |