Background Notification Sound
Play a Notification Sound when receiving a message in the background with service worker. Also keep chrome running in background.
What is Background Notification Sound?
Background Notification Sound is a Chrome extension developed by Safe SA, and its main feature is "Play a Notification Sound when receiving a message in the background with service worker. Also keep chrome running in background.".
Extension Screenshots
Download Background Notification Sound Extension CRX File
Download Background Notification Sound 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
Play a Notification Sound when receiving a message in the background with service worker at https://www.safesa.co.za/track. Also keep chrome running in background to receive messages even if it closes.
Extension Basic Information
Name | Background Notification Sound |
ID | diadblmpfmoecighhdmalpahghimodil |
Official URL | https://chromewebstore.google.com/detail/background-notification-s/diadblmpfmoecighhdmalpahghimodil |
Description | Play a Notification Sound when receiving a message in the background with service worker. Also keep chrome running in background. |
File Size | 86.34 KB |
Installation Count | 1,424 |
Current Version | 0.4 |
Last Updated | 2018-10-08 |
Publish Date | 2018-10-07 |
Rating | 2.00/5 Total 6 Ratings |
Developer | Safe SA |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Background Notification Sound", "description": "Play a Notification Sound when receiving a message in the background with service worker. Also keep chrome running in background.", "version": "0.4", "icons": { "16": "sound16.png", "32": "sound32.png", "48": "sound48.png", "128": "sound128.png" }, "web_accessible_resources": [ "sound16.png" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "webRequest", "https:\/\/*.playsound\/" ] } |