Hack.Chat Notifications
Adds desktop and sound notifications to hack.chat for mentions, whispers, and invites, warnings, and highlights messages to you.
What is Hack.Chat Notifications?
Hack.Chat Notifications is a Chrome extension developed by pines, and its main feature is "Adds desktop and sound notifications to hack.chat for mentions, whispers, and invites, warnings, and highlights messages to you.".
Extension Screenshots
Download Hack.Chat Notifications Extension CRX File
Download Hack.Chat Notifications extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension Basic Information
Name | |
ID | jbgamigkfmdagfhgijmnhamjplfdnalm |
Official URL | https://chromewebstore.google.com/detail/hackchat-notifications/jbgamigkfmdagfhgijmnhamjplfdnalm |
Description | Adds desktop and sound notifications to hack.chat for mentions, whispers, and invites, warnings, and highlights messages to you. |
File Size | 103 KB |
Installation Count | 52 |
Current Version | 1.5 |
Last Updated | 2019-02-20 |
Publish Date | 2019-02-20 |
Developer | pines |
Payment Type | free |
Extension Website | https://hack.chat/?programming |
Supported Languages | 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" ] } |