TFS Chat Extensions
Add-ons to the TFS Team Rooms (code syntax highlighting, pop-up noticiations, etc.)
TFS Chat Extensionsคืออะไร?
TFS Chat Extensions เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Joe Coutcher และคุณลักษณะหลักของมันคือ "Add-ons to the TFS Team Rooms (code syntax highlighting, pop-up noticiations, etc.)"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TFS Chat Extensions
ดาวน์โหลดไฟล์ส่วนขยาย TFS Chat Extensions ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Adds additional features to Team Foundation Server/Visual Studio Team Room Version 0.1.5 7/28/2016: Integrated patch requests from NikGovorov and aschwab related to issues w/ on-premise support. As I don't have access to an on-premise server, if you run into issues, please report them at: https://github.com/nuts4dotnet/TFSChatExtensions/issues Version 0.1.4 1/7/2016: Integrated some bug fixes for on-premise instances. Version 0.1.3 10/31/2015: *** Experimental On-premise support *** As I don't have an on-premise server to test this on, that's why this is marked as experimental. The plugin will always remain in-line with the cloud-based chat service (with some exceptions), so the plugin is not guaranteed to work with on-premise instances. If it's something I can easily work around, I'll gladly add code to do so. If you find any issues, please report them to the Github issues page: https://github.com/nuts4dotnet/TFSChatExtensions *** Capitalization fix for VSO team room *** In 1.1.2, I introduced a fix to address variable capitalization changes in recent versions of the TFS Chat Room. With the new experimental on-premise support, I realized that most customers may not be running the latest version with the capitalization changes, so I added backwards compatibility. *** Changeset identification *** In version prior to 1.1.3, you could specify a changeset by using #c1234. As I found out quite a few times, url's like "http://someurl.com/#content" causes the URL to become "http://someurl.com/Changeset ontent". So, to identify changesets now, use ##c1234. Also, the URL's now open up in a new window/tab. --- Version 0.1.2 10/29/2015 - Integrated capitalization fixes for object names from Mike-999. (Sorry for how long this took...I no longer use TFS Online...so this plugin doesn't get maintained like it should.) Version 0.1.1 6/18/2014 - Removed old code for webkitNotifications, and implemented W3C Notification class. Link to enable notifications for your TFS site will be in the upper-right corner by your username. Version 0.1.0 6/18/2014 - Initial Release List of features: * Popup notifications for messages - Link to enable notifications for your TFS site will be in the upper-right corner by your username. * Image embedding (jpg/png) by simply pasting the url * Animated GIF support (disabled by default) * Code Syntax Highlighting (using markdown's ``` var i = 0; ``` syntax) * YouTube embedding * Changeset referencing (by using ##cxxxx syntax, where xxxx is the changeset number. i.e. ##c1234 will change into a link stating "Changeset 1234" that will take you directly to the changeset info page) You can configure specific features of the plugin by accessing the options page (File -> Settings -> Extensions -> the "options" link under "TFS Chat Extensions") Contributors: Ryan Lanciaux Mike-999 (Github) NikGovorov (Github) aschwab (Github) Got ideas for enhancements? Let me know! Or feel free to contribute to the open source project: http://github.com/nuts4dotnet/TFSChatExtensions
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | lnkmcjeibjfompohbcjfkimjijajiadd |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/tfs-chat-extensions/lnkmcjeibjfompohbcjfkimjijajiadd |
คำอธิบาย | Add-ons to the TFS Team Rooms (code syntax highlighting, pop-up noticiations, etc.) |
ขนาดไฟล์ | 186 KB |
จำนวนการติดตั้ง | 246 |
เวอร์ชันปัจจุบัน | 0.1.5 |
อัปเดตครั้งล่าสุด | 2016-07-28 |
วันที่เผยแพร่ | 2016-07-28 |
คะแนน | 4.83/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | Joe Coutcher |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://github.com/nuts4dotnet/TFSChatExtensions |
URL หน้าช่วยเหลือ | http://nuts4.net/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TFS Chat Extensions", "version": "0.1.5", "manifest_version": 2, "background": { "scripts": [ "\/src\/store.js", "\/src\/main.js" ] }, "description": "Add-ons to the TFS Team Rooms (code syntax highlighting, pop-up noticiations, etc.)", "homepage_url": "https:\/\/github.com\/nuts4dotnet\/TFSChatExtensions", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "content_scripts": [ { "matches": [ "*:\/\/*\/_rooms*", "*:\/\/*\/*\/_rooms*" ], "js": [ "src\/bg\/background.js" ] } ], "web_accessible_resources": [ "\/src\/bg\/TeamRoomScript.js" ], "options_page": "src\/options_custom\/index.html", "permissions": [ "contentSettings", "tts", "ttsEngine", "notifications", "https:\/\/*.visualstudio.com\/_rooms*" ] } |