TFS Enhancements
This extension enhances Team Foundation Service sites
Cos'è TFS Enhancements?
TFS Enhancements è un'estensione di Chrome sviluppata da http://www.codethug.com, e la sua funzione principale è "This extension enhances Team Foundation Service sites".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TFS Enhancements
Scarica i file di estensione TFS Enhancements in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | fnkmfpilihpmfooacmbicbphjpgichjl |
URL Ufficiale | https://chrome.google.com/webstore/detail/tfs-enhancements/fnkmfpilihpmfooacmbicbphjpgichjl |
Descrizione | This extension enhances Team Foundation Service sites |
Dimensione del File | 129 KB |
Conteggio Installazioni | 276 |
Versione Corrente | 1.0.7 |
Ultimo Aggiornamento | 2014-03-03 |
Data di Pubblicazione | 2014-03-03 |
Valutazione | 3.00/5 Totale 1 Valutazioni |
Sviluppatore | http://www.codethug.com |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/codethug/TFSChromeExtension |
Lingue Supportate | 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" } ] } |