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是由Safe SA開發的Chrome擴展程式,該擴展的主要功能是“Play a Notification Sound when receiving a message in the background with service worker. Also keep chrome running in background.”。
擴展截圖
下載Background Notification Sound擴展crx文件
下載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 |
官方網址 | 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\/" ] } |