Google Meet Volume Control
Client side volume control for Google Meet
什么是Google Meet Volume Control?
Google Meet Volume Control是由https://matthew-cash.com开发的Chrome扩展程序,该扩展的主要功能是“Client side volume control for Google Meet”。
扩展截图
下载Google Meet Volume Control扩展crx文件
下载Google Meet Volume Control扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Set a global volume for all Meet participants (client side). Click the extension's icon while in Google Meet to adjust the volume using a simple slider.
扩展基本信息
名称 | Google Meet Volume Control |
ID | nkbnlgonoekhmldnihfdpakhhjhmdkbd |
官方URL | https://chromewebstore.google.com/detail/google-meet-volume-contro/nkbnlgonoekhmldnihfdpakhhjhmdkbd |
简介 | Client side volume control for Google Meet |
文件大小 | 14.06 KB |
安装次数 | 54,008 |
当前版本 | 1.2.0 |
更新时间 | 2023-06-29 |
上架时间 | 2020-09-15 |
评分 | 4.56/5 共136次评分 |
开发者 | https://matthew-cash.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/MatthewCash/google-meet-volume-control |
帮助页面URL | https://github.com/MatthewCash/google-meet-volume-control/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Meet Volume Control", "description": "Client side volume control for Google Meet", "version": "1.2.0", "short_name": "Meet Volume", "manifest_version": 3, "action": { "default_popup": "src\/popup\/popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/meet.google.com\/*" ], "js": [ "src\/js\/meet.js" ] } ], "background": { "service_worker": "src\/js\/background.js" }, "permissions": [ "storage", "background", "declarativeContent" ] } |