Google Meet Push to Talk
Enable push to talk functionality in Google Meet
What is Google Meet Push to Talk?
Google Meet Push to Talk is a Chrome extension developed by JCW Services, and its main feature is "Enable push to talk functionality in Google Meet".
Extension Screenshots
Download Google Meet Push to Talk Extension CRX File
Download Google Meet Push to Talk extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Google Meet Push to Talk |
ID | lmbeadglfeffhemaffjdgfbgmiggafkg |
Official URL | https://chromewebstore.google.com/detail/google-meet-push-to-talk/lmbeadglfeffhemaffjdgfbgmiggafkg |
Description | Enable push to talk functionality in Google Meet |
File Size | 95.2 KB |
Installation Count | 24,051 |
Current Version | 1.0.6 |
Last Updated | 2021-05-28 |
Publish Date | 2020-05-28 |
Rating | 3.36/5 Total 28 Ratings |
Developer | JCW Services |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |