Teams Notification Sound
Add sounds to Teams PWA notifications.
¿Qué es Teams Notification Sound?
Teams Notification Sound es una extensión de Chrome desarrollada por simone.gaiarin, y su función principal es "Add sounds to Teams PWA notifications.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Teams Notification Sound
Descarga archivos de extensión Teams 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
This extension plays a sound each time a desktop notification is displayed. It is particularly intended for linux users that need to transition to the PWA once the desktop app will be dismissed. Attributions: Volume icons created by Freepik - Flaticon https://www.flaticon.com/free-icons/volume
Información Básica de la Extensión
Nombre | Teams Notification Sound |
ID | bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
URL Oficial | https://chromewebstore.google.com/detail/teams-notification-sound/bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
Descripción | Add sounds to Teams PWA notifications. |
Tamaño del Archivo | 49.36 KB |
Cantidad de Instalaciones | 963 |
Versión Actual | 1.0.3 |
Última Actualización | 2023-05-30 |
Fecha de Publicación | 2023-01-22 |
Calificación | 4.55/5 Total de 11 Calificaciones |
Desarrollador | simone.gaiarin |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/simgunz/chrome-extension-teams-notifications |
URL de la Página de Ayuda | https://github.com/simgunz/chrome-extension-teams-notifications/issues |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Teams Notification Sound", "description": "Add sounds to Teams PWA notifications.", "version": "1.0.3", "author": "Simone Gaiarin", "icons": { "128": "icons\/icon.png" }, "content_scripts": [ { "js": [ "scripts\/default-options.js", "scripts\/content.js" ], "matches": [ "https:\/\/teams.microsoft.com\/*", "http:\/\/localhost\/*" ] } ], "permissions": [ "storage" ], "options_page": "options\/options.html", "web_accessible_resources": [ { "resources": [ "scripts\/teams-notification.js", "sounds\/teams-notification.mp3" ], "matches": [ "https:\/\/teams.microsoft.com\/*" ] } ] } |