TFS Chat Notifier
This extension notifies when you are called in a chat.
What is TFS Chat Notifier?
TFS Chat Notifier is a Chrome extension developed by Unknown, and its main feature is "This extension notifies when you are called in a chat.".
Download TFS Chat Notifier Extension CRX File
Download TFS Chat Notifier 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
Monitors a TFS Room chat page and alerts you of new messages or when you were called.
Extension Basic Information
Name | |
ID | hkcpebjpidlbpammcbpepkgmldcpiehd |
Official URL | https://chromewebstore.google.com/detail/tfs-chat-notifier/hkcpebjpidlbpammcbpepkgmldcpiehd |
Description | This extension notifies when you are called in a chat. |
File Size | 107 KB |
Installation Count | 14 |
Current Version | 1.2 |
Last Updated | 2016-07-09 |
Publish Date | 2016-07-09 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TFS Chat Notifier", "description": "This extension notifies when you are called in a chat.", "version": "1.2", "browser_action": { "default_icon": "tfschatalert.png" }, "permissions": [ "tabs", "pageCapture", "activeTab", "storage", "notifications" ], "background": { "scripts": [ "tfschatalert_bg.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/tfs\/_rooms*" ], "js": [ "jquery-1.11.0.js", "tfschatalert.js" ], "all_frames": true } ], "options_page": "options.html" } |