Hack.Chat Notifications
Adds desktop and sound notifications to hack.chat for mentions, whispers, and invites, warnings, and highlights messages to you.
Was ist Hack.Chat Notifications?
Hack.Chat Notifications ist eine Chrome-Erweiterung, die von pines entwickelt wurde, und ihr Hauptmerkmal ist "Adds desktop and sound notifications to hack.chat for mentions, whispers, and invites, warnings, and highlights messages to you.".
Erweiterungsscreenshots
Hack.Chat Notifications-Erweiterungs-CRX-Datei herunterladen
Laden Sie Hack.Chat Notifications-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jbgamigkfmdagfhgijmnhamjplfdnalm |
| Offizielle URL | https://chromewebstore.google.com/detail/hackchat-notifications/jbgamigkfmdagfhgijmnhamjplfdnalm |
| Beschreibung | Adds desktop and sound notifications to hack.chat for mentions, whispers, and invites, warnings, and highlights messages to you. |
| Dateigröße | 103 KB |
| Installationsanzahl | 52 |
| Aktuelle Version | 1.5 |
| Letztes Update | 2019-02-20 |
| Veröffentlichungsdatum | 2019-02-20 |
| Entwickler | pines |
| Zahlungsart | free |
| Erweiterungswebsite | https://hack.chat/?programming |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Hack.Chat Notifications",
"version": "1.5",
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"description": "Adds desktop and sound notifications to hack.chat for mentions, whispers, and invites, warnings, and highlights messages to you.",
"icons": {
"16": "icons\/favicon-16x16.png",
"32": "icons\/favicon-32x32.png",
"48": "icons\/favicon-48x48.png",
"64": "icons\/favicon-64x64.png",
"96": "icons\/favicon-96x96.png",
"128": "icons\/favicon-128x128.png",
"192": "icons\/favicon-192x192.png"
},
"permissions": [
"notifications"
],
"content_scripts": [
{
"matches": [
"https:\/\/hack.chat\/*",
"http:\/\/hack.chat\/*"
],
"js": [
"content_scripts\/injectNotifier.js"
]
}
],
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "icons\/favicon-16x16.png",
"32": "icons\/favicon-32x32.png",
"48": "icons\/favicon-48x48.png",
"64": "icons\/favicon-64x64.png",
"96": "icons\/favicon-96x96.png",
"128": "icons\/favicon-128x128.png",
"192": "icons\/favicon-192x192.png"
},
"default_title": "Hack.Chat Notifications",
"default_popup": "popup\/settings.html"
},
"web_accessible_resources": [
"content_scripts\/injectNotifier.js",
"content_scripts\/notify.js",
"assets\/notify.ogg"
]
} | |