Instant Meet
Start Google Meet calls instantly with just a click of a button!
什么是Instant Meet?
Instant Meet是由Shahlin Ibrahim开发的Chrome扩展程序,该扩展的主要功能是“Start Google Meet calls instantly with just a click of a button!”。
扩展截图
下载Instant Meet扩展crx文件
下载Instant Meet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Get on a NEW Google Meet call with just a click of button; To make it even more convenient, the link is automatically copied so you can pass it on to others. For the lazy ones, you save a whole 7-10 seconds with this easy access 😂
Note: For the automatic copy to clipboard to work, you will need to allow access the first time it asks you 扩展基本信息
| 名称 | |
| ID | pjgfblbagmedppcpibbgdkdhbdgehmmi |
| 官方URL | https://chromewebstore.google.com/detail/instant-meet/pjgfblbagmedppcpibbgdkdhbdgehmmi |
| 简介 | Start Google Meet calls instantly with just a click of a button! |
| 文件大小 | 10.62 KB |
| 安装次数 | 79 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2023-08-04 |
| 上架时间 | 2023-08-04 |
| 开发者 | Shahlin Ibrahim |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Instant Meet",
"description": "Start Google Meet calls instantly with just a click of a button!",
"version": "1.0.0",
"manifest_version": 3,
"author": "Shahlin Ibrahim",
"icons": {
"16": "images\/logo\/logo-16.png",
"32": "images\/logo\/logo-32.png",
"48": "images\/logo\/logo-48.png",
"128": "images\/logo\/logo-128.png"
},
"permissions": [],
"action": [],
"host_permissions": [
"https:\/\/meet.google.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/meet.google.com\/*"
],
"js": [
"content-script.js"
]
}
]
} | |