TFS Chat Notifier
This extension notifies when you are called in a chat.
O que é TFS Chat Notifier?
TFS Chat Notifier é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "This extension notifies when you are called in a chat.".
Baixar o arquivo CRX da Extensão TFS Chat Notifier
Baixe arquivos de extensão TFS Chat Notifier no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Monitors a TFS Room chat page and alerts you of new messages or when you were called.
Informações Básicas da Extensão
Nome | |
ID | hkcpebjpidlbpammcbpepkgmldcpiehd |
URL Oficial | https://chromewebstore.google.com/detail/tfs-chat-notifier/hkcpebjpidlbpammcbpepkgmldcpiehd |
Descrição | This extension notifies when you are called in a chat. |
Tamanho do Arquivo | 107 KB |
Contagem de Instalações | 14 |
Versão Atual | 1.2 |
Última Atualização | 2016-07-09 |
Data de Publicação | 2016-07-09 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } |