Teams Notification Sound
Add sounds to Teams PWA notifications.
Co je Teams Notification Sound?
Teams Notification Sound je rozšíření Chrome vyvinuté simone.gaiarin, a jeho hlavní funkcí je „Add sounds to Teams PWA notifications.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Teams Notification Sound
Stáhněte si soubory rozšíření Teams Notification Sound ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Teams Notification Sound |
ID | bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
Oficiální URL | https://chromewebstore.google.com/detail/teams-notification-sound/bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
Popis | Add sounds to Teams PWA notifications. |
Velikost souboru | 49.36 KB |
Počet instalací | 963 |
Aktuální Verze | 1.0.3 |
Poslední Aktualizace | 2023-05-30 |
Datum Vydání | 2023-01-22 |
Hodnocení | 4.55/5 Celkem 11 Hodnocení |
Vývojář | simone.gaiarin |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/simgunz/chrome-extension-teams-notifications |
URL Stránky Nápovědy | https://github.com/simgunz/chrome-extension-teams-notifications/issues |
Podporované Jazyky | 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\/*" ] } ] } |