Meet raise hand

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

Was ist Meet raise hand?

Meet raise hand ist eine Chrome-Erweiterung, die von RyoKawamata entwickelt wurde, und ihr Hauptmerkmal ist "This is a Chrome extension that allows you to control the Raise button with real hand movements".

Erweiterungsscreenshots

screenshot

Meet raise hand-Erweiterungs-CRX-Datei herunterladen

Laden Sie Meet raise hand-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Meet raise hand Meet raise hand
ID hblejdjcncfdlcjdjcjipngpkadmppca
Offizielle URL https://chrome.google.com/webstore/detail/meet-raise-hand/hblejdjcncfdlcjdjcjipngpkadmppca
Beschreibung This is a Chrome extension that allows you to control the Raise button with real hand movements
Dateigröße 268 KB
Installationsanzahl 484
Aktuelle Version 0.0.1
Letztes Update 2021-08-22
Veröffentlichungsdatum 2021-08-22
Entwickler RyoKawamata
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/kawamataryo/meet-raise-hand
Unterstützte Sprachen 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"
    ]
}