TFS Chat Notifier
This extension notifies when you are called in a chat.
Hvad er TFS Chat Notifier?
TFS Chat Notifier er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "This extension notifies when you are called in a chat.".
Download TFS Chat Notifier-udvidelses-CRX-fil
Download TFS Chat Notifier-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Monitors a TFS Room chat page and alerts you of new messages or when you were called. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | hkcpebjpidlbpammcbpepkgmldcpiehd |
| Officiel URL | https://chromewebstore.google.com/detail/tfs-chat-notifier/hkcpebjpidlbpammcbpepkgmldcpiehd |
| Beskrivelse | This extension notifies when you are called in a chat. |
| Filstørrelse | 107 KB |
| Antal Installationer | 14 |
| Nuværende Version | 1.2 |
| Senest Opdateret | 2016-07-09 |
| Udgivelsesdato | 2016-07-09 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | Unknown |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
} | |