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 |
官方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\/" ] } |