Teams Notification Sound
Add sounds to Teams PWA notifications.
Cos'è Teams Notification Sound?
Teams Notification Sound è un'estensione di Chrome sviluppata da simone.gaiarin, e la sua funzione principale è "Add sounds to Teams PWA notifications.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Teams Notification Sound
Scarica i file di estensione Teams Notification Sound in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Teams Notification Sound |
ID | bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
URL Ufficiale | https://chromewebstore.google.com/detail/teams-notification-sound/bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
Descrizione | Add sounds to Teams PWA notifications. |
Dimensione del File | 49.36 KB |
Conteggio Installazioni | 963 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2023-05-30 |
Data di Pubblicazione | 2023-01-22 |
Valutazione | 4.55/5 Totale 11 Valutazioni |
Sviluppatore | simone.gaiarin |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/simgunz/chrome-extension-teams-notifications |
URL della Pagina di Aiuto | https://github.com/simgunz/chrome-extension-teams-notifications/issues |
Lingue Supportate | 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\/*" ] } ] } |