TFS Chat Notifier
This extension notifies when you are called in a chat.
Co to jest TFS Chat Notifier?
TFS Chat Notifier to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „This extension notifies when you are called in a chat.”.
Pobierz plik CRX rozszerzenia TFS Chat Notifier
Pobierz pliki rozszerzeń TFS Chat Notifier w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Monitors a TFS Room chat page and alerts you of new messages or when you were called.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | hkcpebjpidlbpammcbpepkgmldcpiehd |
Oficjalny URL | https://chromewebstore.google.com/detail/tfs-chat-notifier/hkcpebjpidlbpammcbpepkgmldcpiehd |
Opis | This extension notifies when you are called in a chat. |
Rozmiar pliku | 107 KB |
Liczba instalacji | 14 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2016-07-09 |
Data Publikacji | 2016-07-09 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Unknown |
Typ Płatności | free |
Obsługiwane Języki | 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" } |