Teams Notification Sound
Add sounds to Teams PWA notifications.
Co to jest Teams Notification Sound?
Teams Notification Sound to rozszerzenie Chrome opracowane przez simone.gaiarin, a jego główną funkcją jest „Add sounds to Teams PWA notifications.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Teams Notification Sound
Pobierz pliki rozszerzeń Teams Notification Sound w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
| Oficjalny URL | https://chromewebstore.google.com/detail/teams-notification-sound/bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
| Opis | Add sounds to Teams PWA notifications. |
| Rozmiar pliku | 49.36 KB |
| Liczba instalacji | 963 |
| Aktualna Wersja | 1.0.3 |
| Ostatnia Aktualizacja | 2023-05-30 |
| Data Publikacji | 2023-01-22 |
| Ocena | 4.55/5 Łącznie 11 Oceny |
| Deweloper | simone.gaiarin |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/simgunz/chrome-extension-teams-notifications |
| Adres URL Strony Pomocy | https://github.com/simgunz/chrome-extension-teams-notifications/issues |
| Obsługiwane Języki | 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\/*"
]
}
]
} | |