Background Notification Sound
Play a Notification Sound when receiving a message in the background with service worker. Also keep chrome running in background.
Co to jest Background Notification Sound?
Background Notification Sound to rozszerzenie Chrome opracowane przez Safe SA, a jego główną funkcją jest „Play a Notification Sound when receiving a message in the background with service worker. Also keep chrome running in background.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Background Notification Sound
Pobierz pliki rozszerzeń Background 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
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | diadblmpfmoecighhdmalpahghimodil |
| Oficjalny URL | https://chromewebstore.google.com/detail/background-notification-s/diadblmpfmoecighhdmalpahghimodil |
| Opis | Play a Notification Sound when receiving a message in the background with service worker. Also keep chrome running in background. |
| Rozmiar pliku | 86.34 KB |
| Liczba instalacji | 1,424 |
| Aktualna Wersja | 0.4 |
| Ostatnia Aktualizacja | 2018-10-08 |
| Data Publikacji | 2018-10-07 |
| Ocena | 2.00/5 Łącznie 6 Oceny |
| Deweloper | Safe SA |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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\/"
]
} | |