GM Assistant
GM Assistant
什么是GM Assistant?
GM Assistant是由Ayudh Kumar Gupta开发的Chrome扩展程序,该扩展的主要功能是“GM Assistant”。
扩展截图
下载GM Assistant扩展crx文件
下载GM Assistant扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Use this chrome extension to join all google meet calls via a default user. One can also Turn off their Mic and Camera by default using this extension. 扩展基本信息
| 名称 | |
| ID | gnfmffmjjhjhidgghikjiajfbcfhdfmf |
| 官方URL | https://chromewebstore.google.com/detail/gm-assistant/gnfmffmjjhjhidgghikjiajfbcfhdfmf |
| 简介 | GM Assistant |
| 文件大小 | 49.11 KB |
| 安装次数 | 51 |
| 当前版本 | 1.1 |
| 更新时间 | 2021-06-18 |
| 上架时间 | 2021-03-29 |
| 评分 | 5.00/5 共10次评分 |
| 开发者 | Ayudh Kumar Gupta |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GM Assistant",
"version": "1.1",
"description": "GM Assistant",
"manifest_version": 2,
"browser_action": {
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage",
"tabs",
"http:\/\/*\/",
"https:\/\/*\/"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"constants.js",
"storageUtil.js",
"content.js"
]
}
],
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
}
} | |