Push To Talk For Google Meet

Hold in Google Meet to talk instead of fumbling around trying to mute and unmute

Что такое Push To Talk For Google Meet?

Push To Talk For Google Meet - это расширение Chrome, разработанное https://www.w3technic.com, и его основная функция - "Hold in Google Meet to talk instead of fumbling around trying to mute and unmute".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Push To Talk For Google Meet

Скачайте файлы расширений Push To Talk For Google Meet в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Hold [spacebar] in Google Meet to talk instead of fumbling around trying to mute and unmute
No more unexpected sounds.
Simple add-on that allows you to mute and unmute yourself with a key press instead of fumbling around trying to click the icon.

DOCUMENTATION
Click "Add to Chrome"  button then go to Google Meet page
Mute/unmute: Quick push [spacebar]
Hold [spacebar] (default) to talk, release to go back to mute
Configure your own hotkey if you don't like [spacebar] in settings
Mute will be on by default, but you can disable that feature in settings
This extensions only works on Google Meet

PURPOSE
This extension was made to help all the teachers and students figuring out distance learning together.

PRIVACY POLICY
We don't store your data, period.
Thanks!                    

Основная информация о расширении

Название Push To Talk For Google Meet Push To Talk For Google Meet
ID kkijalhkcfebhahlagllhlpocfehbfok
Официальный URL https://chromewebstore.google.com/detail/push-to-talk-for-google-m/kkijalhkcfebhahlagllhlpocfehbfok
Описание Hold in Google Meet to talk instead of fumbling around trying to mute and unmute
Размер файла 35.12 KB
Количество установок 986
Текущая Версия 1.1.1
Последнее Обновление 2020-07-25
Дата публикации 2020-07-21
Рейтинг 4.29/5 Всего 7 оценок
Разработчик https://www.w3technic.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.w3technic.com/
URL страницы помощи https://www.w3technic.com/contact.html
URL страницы политики конфиденциальности https://w3technic.com/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.1.1",
    "manifest_version": 2,
    "name": "Push To Talk For Google Meet",
    "description": "Hold  in Google Meet to talk instead of fumbling around trying to mute and unmute",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "ptt.bundle.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.bundle.js",
            "update-conf.js",
            "update.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "options.html"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "homepage_url": "https:\/\/www.w3technic.com\/p\/push-to-talk-for-google-meet.html"
}