Teams Notification Sound
Add sounds to Teams PWA notifications.
Was ist Teams Notification Sound?
Teams Notification Sound ist eine Chrome-Erweiterung, die von simone.gaiarin entwickelt wurde, und ihr Hauptmerkmal ist "Add sounds to Teams PWA notifications.".
Erweiterungsscreenshots
Teams Notification Sound-Erweiterungs-CRX-Datei herunterladen
Laden Sie Teams Notification Sound-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
| Offizielle URL | https://chromewebstore.google.com/detail/teams-notification-sound/bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
| Beschreibung | Add sounds to Teams PWA notifications. |
| Dateigröße | 49.36 KB |
| Installationsanzahl | 963 |
| Aktuelle Version | 1.0.3 |
| Letztes Update | 2023-05-30 |
| Veröffentlichungsdatum | 2023-01-22 |
| Bewertung | 4.55/5 Insgesamt 11 Bewertungen |
| Entwickler | simone.gaiarin |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/simgunz/chrome-extension-teams-notifications |
| Hilfeseite URL | https://github.com/simgunz/chrome-extension-teams-notifications/issues |
| Unterstützte Sprachen | 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\/*"
]
}
]
} | |