Teams Notification Sound
Add sounds to Teams PWA notifications.
Hvad er Teams Notification Sound?
Teams Notification Sound er en Chrome-udvidelse udviklet af simone.gaiarin, og dens hovedfunktion er "Add sounds to Teams PWA notifications.".
Udvidelsesskærmbilleder
Download Teams Notification Sound-udvidelses-CRX-fil
Download Teams Notification Sound-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
| Officiel URL | https://chromewebstore.google.com/detail/teams-notification-sound/bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
| Beskrivelse | Add sounds to Teams PWA notifications. |
| Filstørrelse | 49.36 KB |
| Antal Installationer | 963 |
| Nuværende Version | 1.0.3 |
| Senest Opdateret | 2023-05-30 |
| Udgivelsesdato | 2023-01-22 |
| Bedømmelse | 4.55/5 Samlet 11 Bedømmelser |
| Udvikler | simone.gaiarin |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/simgunz/chrome-extension-teams-notifications |
| Hjælpeside-URL | https://github.com/simgunz/chrome-extension-teams-notifications/issues |
| Understøttede Sprog | 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\/*"
]
}
]
} | |