TFS Chat Notifier
This extension notifies when you are called in a chat.
Wat is TFS Chat Notifier?
TFS Chat Notifier is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "This extension notifies when you are called in a chat.".
Download het CRX-bestand van de extensie TFS Chat Notifier
Download TFS Chat Notifier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Monitors a TFS Room chat page and alerts you of new messages or when you were called.
Basisinformatie over de Extensie
Naam | |
ID | hkcpebjpidlbpammcbpepkgmldcpiehd |
Officiële URL | https://chromewebstore.google.com/detail/tfs-chat-notifier/hkcpebjpidlbpammcbpepkgmldcpiehd |
Beschrijving | This extension notifies when you are called in a chat. |
Bestandsgrootte | 107 KB |
Aantal Installaties | 14 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2016-07-09 |
Publicatiedatum | 2016-07-09 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Unknown |
Betalingswijze | free |
Ondersteunde Talen | 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" } |