Meet raise hand

This is a Chrome extension that allows you to control the Raise button with real hand movements

Что такое Meet raise hand?

Meet raise hand - это расширение Chrome, разработанное RyoKawamata, и его основная функция - "This is a Chrome extension that allows you to control the Raise button with real hand movements".

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

screenshot

Скачать файл CRX расширения Meet raise hand

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

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

                        This is a Chrome extension that allows you to control the Raise button with real hand movements.

## Feature

- ✋ When you raise your hand in real life, the meet's raise button will also be pressed.
- 🔐 All processing is done within the browser. No image data will be sent to the any server.                    

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

Название Meet raise hand Meet raise hand
ID hblejdjcncfdlcjdjcjipngpkadmppca
Официальный URL https://chrome.google.com/webstore/detail/meet-raise-hand/hblejdjcncfdlcjdjcjipngpkadmppca
Описание This is a Chrome extension that allows you to control the Raise button with real hand movements
Размер файла 268 KB
Количество установок 484
Текущая Версия 0.0.1
Последнее Обновление 2021-08-22
Дата публикации 2021-08-22
Разработчик RyoKawamata
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/kawamataryo/meet-raise-hand
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Meet raise hand",
    "version": "0.0.1",
    "description": "This is a Chrome extension that allows you to control the Raise button with real hand movements",
    "browser_action": {
        "default_icon": ".\/assets\/icon-48.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/meet.google.com\/*",
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                ".\/dist\/contentScripts\/index.global.js"
            ],
            "css": [
                ".\/dist\/contentScripts\/index.global.css"
            ]
        }
    ],
    "icons": {
        "19": ".\/assets\/icon-19.png",
        "48": ".\/assets\/icon-48.png",
        "128": ".\/assets\/icon.png"
    },
    "permissions": [
        "tabs",
        "activeTab"
    ]
}