Google Meet Push to Talk
Enable push to talk functionality in Google Meet
什么是Google Meet Push to Talk?
Google Meet Push to Talk是由JCW Services开发的Chrome扩展程序,该扩展的主要功能是“Enable push to talk functionality in Google Meet”。
扩展截图
下载Google Meet Push to Talk扩展crx文件
下载Google Meet Push to Talk扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension is for Google Meet This will enable simple push to talk functionality to make it easier to only have your microphone on when talk to prevent feedback especially in large meetings When the spacebar is pressed down it will unmute the microphone and when released it will mute the microphone Code - https://github.com/jcw-os/google-meet-ptt
扩展基本信息
名称 | Google Meet Push to Talk |
ID | lmbeadglfeffhemaffjdgfbgmiggafkg |
官方URL | https://chromewebstore.google.com/detail/google-meet-push-to-talk/lmbeadglfeffhemaffjdgfbgmiggafkg |
简介 | Enable push to talk functionality in Google Meet |
文件大小 | 95.2 KB |
安装次数 | 24,051 |
当前版本 | 1.0.6 |
更新时间 | 2021-05-28 |
上架时间 | 2020-05-28 |
评分 | 3.36/5 共28次评分 |
开发者 | JCW Services |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Meet Push to Talk", "description": "Enable push to talk functionality in Google Meet", "version": "1.0.6", "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png", "256": "icons\/icon-256.png", "512": "icons\/icon-512.png", "1024": "icons\/icon-1024.png" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "js\/content_script.js" ], "css": [ "css\/ptt.css" ] } ] } |