Background Notification Sound
Play a Notification Sound when receiving a message in the background with service worker. Also keep chrome running in background.
Что такое Background Notification Sound?
Background Notification Sound - это расширение Chrome, разработанное Safe SA, и его основная функция - "Play a Notification Sound when receiving a message in the background with service worker. Also keep chrome running in background.".
Снимки экрана расширения
Скачать файл CRX расширения Background Notification Sound
Скачайте файлы расширений Background Notification Sound в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Play a Notification Sound when receiving a message in the background with service worker at https://www.safesa.co.za/track. Also keep chrome running in background to receive messages even if it closes.
Основная информация о расширении
Название | Background Notification Sound |
ID | diadblmpfmoecighhdmalpahghimodil |
Официальный URL | https://chromewebstore.google.com/detail/background-notification-s/diadblmpfmoecighhdmalpahghimodil |
Описание | Play a Notification Sound when receiving a message in the background with service worker. Also keep chrome running in background. |
Размер файла | 86.34 KB |
Количество установок | 1,424 |
Текущая Версия | 0.4 |
Последнее Обновление | 2018-10-08 |
Дата публикации | 2018-10-07 |
Рейтинг | 2.00/5 Всего 6 оценок |
Разработчик | Safe SA |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Background Notification Sound", "description": "Play a Notification Sound when receiving a message in the background with service worker. Also keep chrome running in background.", "version": "0.4", "icons": { "16": "sound16.png", "32": "sound32.png", "48": "sound48.png", "128": "sound128.png" }, "web_accessible_resources": [ "sound16.png" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "webRequest", "https:\/\/*.playsound\/" ] } |