Change FB Messenger Notification Voice
Change facebook messenger notification voice by <3.
什么是Change FB Messenger Notification Voice?
Change FB Messenger Notification Voice是由Nat Lee开发的Chrome扩展程序,该扩展的主要功能是“Change facebook messenger notification voice by <3.”。
扩展截图
下载Change FB Messenger Notification Voice扩展crx文件
下载Change FB Messenger Notification Voice扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Poi!
Github site: https://github.com/NatLee/FacebookMsgPoi 扩展基本信息
| 名称 | |
| ID | gfgpnlogdlabglhbldbdadhpaplacjbo |
| 官方URL | https://chromewebstore.google.com/detail/change-fb-messenger-notif/gfgpnlogdlabglhbldbdadhpaplacjbo |
| 简介 | Change facebook messenger notification voice by <3. |
| 文件大小 | 7.5 KB |
| 安装次数 | 12 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2019-01-27 |
| 上架时间 | 2019-01-27 |
| 开发者 | Nat Lee |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/NatLee/FacebookMsgPoi |
| 帮助页面URL | https://github.com/NatLee/FacebookMsgPoi/issues |
| 支持的语言 | zh-TW |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Change FB Messenger Notification Voice",
"description": "Change facebook messenger notification voice by <3.",
"version": "0.0.1",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_title": "Change FB Messenger Notification Voice",
"default_icon": "icon.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.facebook.com\/*"
],
"js": [
"voice.js"
],
"run_at": "document_end"
}
]
} | |