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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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\/" ] } |