Hand-me-down for Google Meet
Automatically lower your hand in Google Meet when you start talking
Что такое Hand-me-down for Google Meet?
Hand-me-down for Google Meet - это расширение Chrome, разработанное Mike Crittenden, и его основная функция - "Automatically lower your hand in Google Meet when you start talking".
Снимки экрана расширения
Скачать файл CRX расширения Hand-me-down for Google Meet
Скачайте файлы расширений Hand-me-down for Google Meet в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
"Oh, sorry, I don't have anything to say, I just forgot to lower my hand earlier."
Sound familiar? Not anymore!
This tiny little extension keeps an eye on the "Raise/Lower Hand" button in Google Meet. If you raise your hand, it waits for you to start talking, and when you do it automatically lowers your hand. Основная информация о расширении
| Название | |
| ID | odkejcmkmjeiaiejcghdkdnhbbokolbl |
| Официальный URL | https://chromewebstore.google.com/detail/hand-me-down-for-google-m/odkejcmkmjeiaiejcghdkdnhbbokolbl |
| Описание | Automatically lower your hand in Google Meet when you start talking |
| Размер файла | 16.86 KB |
| Количество установок | 1,370 |
| Текущая Версия | 0.0.3 |
| Последнее Обновление | 2021-03-06 |
| Дата публикации | 2021-02-20 |
| Рейтинг | 4.83/5 Всего 6 оценок |
| Разработчик | Mike Crittenden |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/mikecrittenden/hand-me-down-for-google-meet |
| URL страницы помощи | https://github.com/mikecrittenden/hand-me-down-for-google-meet/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"description": "__MSG_appDescription__",
"version": "0.0.3",
"short_name": "__MSG_appShortName__",
"manifest_version": 2,
"default_locale": "en",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/meet.google.com\/*",
"https:\/\/meet.google.com\/*"
],
"css": [
"styles\/contentscript.css"
],
"js": [
"scripts\/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
]
} | |