Google Meet Push to Talk
Enable push to talk functionality in Google Meet
Что такое Google Meet Push to Talk?
Google Meet Push to Talk - это расширение Chrome, разработанное JCW Services, и его основная функция - "Enable push to talk functionality in Google Meet".
Снимки экрана расширения
Скачать файл CRX расширения Google Meet Push to Talk
Скачайте файлы расширений 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" ] } ] } |