Background Notification Sound
Play a Notification Sound when receiving a message in the background with service worker. Also keep chrome running in background.
¿Qué es Background Notification Sound?
Background Notification Sound es una extensión de Chrome desarrollada por Safe SA, y su función principal es "Play a Notification Sound when receiving a message in the background with service worker. Also keep chrome running in background.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Background Notification Sound
Descarga archivos de extensión Background Notification Sound en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Background Notification Sound |
ID | diadblmpfmoecighhdmalpahghimodil |
URL Oficial | https://chromewebstore.google.com/detail/background-notification-s/diadblmpfmoecighhdmalpahghimodil |
Descripción | Play a Notification Sound when receiving a message in the background with service worker. Also keep chrome running in background. |
Tamaño del Archivo | 86.34 KB |
Cantidad de Instalaciones | 1,424 |
Versión Actual | 0.4 |
Última Actualización | 2018-10-08 |
Fecha de Publicación | 2018-10-07 |
Calificación | 2.00/5 Total de 6 Calificaciones |
Desarrollador | Safe SA |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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\/" ] } |