Meet Chat Notifications
Meet Chat Notifications
什么是Meet Chat Notifications?
Meet Chat Notifications是由ExpressTech开发的Chrome扩展程序,该扩展的主要功能是“Meet Chat Notifications”。
扩展截图
下载Meet Chat Notifications扩展crx文件
下载Meet Chat Notifications扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension is used to show a notification for when someone uses the chat in Google Meet. 扩展基本信息
| 名称 | |
| ID | pjhpmbjmhmajhgjhkojockbjjapppdbe |
| 官方URL | https://chromewebstore.google.com/detail/meet-chat-notifications/pjhpmbjmhmajhgjhkojockbjjapppdbe |
| 简介 | Meet Chat Notifications |
| 文件大小 | 45.63 KB |
| 安装次数 | 8,630 |
| 当前版本 | 2.1.0 |
| 更新时间 | 2021-06-22 |
| 上架时间 | 2020-05-18 |
| 评分 | 3.60/5 共25次评分 |
| 开发者 | ExpressTech |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://mycodding.com/ |
| 帮助页面URL | https://mycodding.com/privacy-policy/ |
| 支持的语言 | en,en-US,pt-BR,pt-PT |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"version": "2.1.0",
"name": "Meet Chat Notifications",
"description": "Meet Chat Notifications",
"author": "SmolBren",
"permissions": [
"notifications"
],
"icons": {
"16": "icon16.png",
"24": "icon24.png",
"36": "icon36.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": {
"15": "icon16.png",
"24": "icon24.png",
"36": "icon36.png",
"48": "icon48.png"
},
"default_title": "Meet Chat Notification",
"default_popup": "index.html"
},
"default_locale": "en",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/meet.google.com\/*"
],
"js": [
"content.js"
]
}
]
} | |