Teams Notification Sound
Add sounds to Teams PWA notifications.
Что такое Teams Notification Sound?
Teams Notification Sound - это расширение Chrome, разработанное simone.gaiarin, и его основная функция - "Add sounds to Teams PWA notifications.".
Снимки экрана расширения
Скачать файл CRX расширения Teams Notification Sound
Скачайте файлы расширений Teams Notification Sound в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | Teams Notification Sound |
ID | bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
Официальный URL | https://chromewebstore.google.com/detail/teams-notification-sound/bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
Описание | Add sounds to Teams PWA notifications. |
Размер файла | 49.36 KB |
Количество установок | 963 |
Текущая Версия | 1.0.3 |
Последнее Обновление | 2023-05-30 |
Дата публикации | 2023-01-22 |
Рейтинг | 4.55/5 Всего 11 оценок |
Разработчик | simone.gaiarin |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/simgunz/chrome-extension-teams-notifications |
URL страницы помощи | https://github.com/simgunz/chrome-extension-teams-notifications/issues |
Поддерживаемые языки | 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\/*" ] } ] } |