WhatsApp Notification Changer
A simple extension that allows the user to change the notification sound of web.whatsapp.com.
什么是WhatsApp Notification Changer?
WhatsApp Notification Changer是由rafael.galani开发的Chrome扩展程序,该扩展的主要功能是“A simple extension that allows the user to change the notification sound of web.whatsapp.com.”。
扩展截图
下载WhatsApp Notification Changer扩展crx文件
下载WhatsApp Notification Changer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple extension that allows the user to change the notification sound of web.whatsapp.com.
扩展基本信息
名称 | |
ID | jnlilnljmhioncbmofmdlphmagmegkde |
官方URL | https://chrome.google.com/webstore/detail/whatsapp-notification-cha/jnlilnljmhioncbmofmdlphmagmegkde |
简介 | A simple extension that allows the user to change the notification sound of web.whatsapp.com. |
文件大小 | 83.43 KB |
安装次数 | 460 |
当前版本 | 1.0 |
更新时间 | 2020-07-30 |
上架时间 | 2020-07-30 |
评分 | 4.00/5 共6次评分 |
开发者 | rafael.galani |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WhatsApp Notification Changer", "version": "1.0", "description": "A simple extension that allows the user to change the notification sound of web.whatsapp.com.", "permissions": [ "unlimitedStorage", "declarativeContent", "storage", "webRequest", "webRequestBlocking", "*:\/\/web.whatsapp.com\/*" ], "background": { "scripts": [ "background.js" ] }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } }, "content_scripts": [ { "js": [ "content-script.js" ], "matches": [ "*:\/\/web.whatsapp.com\/*" ] } ], "web_accessible_resources": [ "modifier.js" ], "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "manifest_version": 2 } |