TFS Enhancements
This extension enhances Team Foundation Service sites
What is TFS Enhancements?
TFS Enhancements is a Chrome extension developed by http://www.codethug.com, and its main feature is "This extension enhances Team Foundation Service sites".
Extension Screenshots
Download TFS Enhancements Extension CRX File
Download TFS Enhancements 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 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
Extension Basic Information
Name | |
ID | fnkmfpilihpmfooacmbicbphjpgichjl |
Official URL | https://chrome.google.com/webstore/detail/tfs-enhancements/fnkmfpilihpmfooacmbicbphjpgichjl |
Description | This extension enhances Team Foundation Service sites |
File Size | 129 KB |
Installation Count | 276 |
Current Version | 1.0.7 |
Last Updated | 2014-03-03 |
Publish Date | 2014-03-03 |
Rating | 3.00/5 Total 1 Ratings |
Developer | http://www.codethug.com |
Payment Type | free |
Extension Website | https://github.com/codethug/TFSChromeExtension |
Supported Languages | 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" } ] } |