Meet raise hand

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

O que é Meet raise hand?

Meet raise hand é uma extensão do Chrome desenvolvida por RyoKawamata, e sua principal característica é "This is a Chrome extension that allows you to control the Raise button with real hand movements".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Meet raise hand

Baixe arquivos de extensão Meet raise hand no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Meet raise hand Meet raise hand
ID hblejdjcncfdlcjdjcjipngpkadmppca
URL Oficial https://chrome.google.com/webstore/detail/meet-raise-hand/hblejdjcncfdlcjdjcjipngpkadmppca
Descrição This is a Chrome extension that allows you to control the Raise button with real hand movements
Tamanho do Arquivo 268 KB
Contagem de Instalações 484
Versão Atual 0.0.1
Última Atualização 2021-08-22
Data de Publicação 2021-08-22
Desenvolvedor RyoKawamata
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/kawamataryo/meet-raise-hand
Idiomas Suportados 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"
    ]
}