TFS Chat Notifier
This extension notifies when you are called in a chat.
¿Qué es TFS Chat Notifier?
TFS Chat Notifier es una extensión de Chrome desarrollada por Unknown, y su función principal es "This extension notifies when you are called in a chat.".
Descargar Archivo CRX de la Extensión TFS Chat Notifier
Descarga archivos de extensión TFS Chat Notifier en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Monitors a TFS Room chat page and alerts you of new messages or when you were called.
Información Básica de la Extensión
Nombre | |
ID | hkcpebjpidlbpammcbpepkgmldcpiehd |
URL Oficial | https://chromewebstore.google.com/detail/tfs-chat-notifier/hkcpebjpidlbpammcbpepkgmldcpiehd |
Descripción | This extension notifies when you are called in a chat. |
Tamaño del Archivo | 107 KB |
Cantidad de Instalaciones | 14 |
Versión Actual | 1.2 |
Última Actualización | 2016-07-09 |
Fecha de Publicación | 2016-07-09 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Unknown |
Tipo de Pago | free |
Idiomas Soportados | 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" } |