Meet raise hand

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

Wat is Meet raise hand?

Meet raise hand is een Chrome-extensie ontwikkeld door RyoKawamata, en de belangrijkste functie is "This is a Chrome extension that allows you to control the Raise button with real hand movements".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Meet raise hand

Download Meet raise hand-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Meet raise hand Meet raise hand
ID hblejdjcncfdlcjdjcjipngpkadmppca
Officiële URL https://chrome.google.com/webstore/detail/meet-raise-hand/hblejdjcncfdlcjdjcjipngpkadmppca
Beschrijving This is a Chrome extension that allows you to control the Raise button with real hand movements
Bestandsgrootte 268 KB
Aantal Installaties 484
Huidige Versie 0.0.1
Laatst Bijgewerkt 2021-08-22
Publicatiedatum 2021-08-22
Ontwikkelaar RyoKawamata
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/kawamataryo/meet-raise-hand
Ondersteunde Talen 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"
    ]
}