Meet raise hand

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

Cos'è Meet raise hand?

Meet raise hand è un'estensione di Chrome sviluppata da RyoKawamata, e la sua funzione principale è "This is a Chrome extension that allows you to control the Raise button with real hand movements".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Meet raise hand

Scarica i file di estensione Meet raise hand in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Meet raise hand Meet raise hand
ID hblejdjcncfdlcjdjcjipngpkadmppca
URL Ufficiale https://chrome.google.com/webstore/detail/meet-raise-hand/hblejdjcncfdlcjdjcjipngpkadmppca
Descrizione This is a Chrome extension that allows you to control the Raise button with real hand movements
Dimensione del File 268 KB
Conteggio Installazioni 484
Versione Corrente 0.0.1
Ultimo Aggiornamento 2021-08-22
Data di Pubblicazione 2021-08-22
Sviluppatore RyoKawamata
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kawamataryo/meet-raise-hand
Lingue Supportate 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"
    ]
}