Meet raise hand

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

Qu'est-ce que Meet raise hand ?

Meet raise hand est une extension Chrome développée par RyoKawamata, et sa fonction principale est "This is a Chrome extension that allows you to control the Raise button with real hand movements".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Meet raise hand

Téléchargez les fichiers d'extension Meet raise hand au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Meet raise hand Meet raise hand
ID hblejdjcncfdlcjdjcjipngpkadmppca
URL Officiel https://chrome.google.com/webstore/detail/meet-raise-hand/hblejdjcncfdlcjdjcjipngpkadmppca
Description This is a Chrome extension that allows you to control the Raise button with real hand movements
Taille du Fichier 268 KB
Nombre d'Installations 484
Version Actuelle 0.0.1
Dernière Mise à Jour 2021-08-22
Date de Publication 2021-08-22
Développeur RyoKawamata
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/kawamataryo/meet-raise-hand
Langues Prises en Charge 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"
    ]
}