Meet raise hand

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

Meet raise hand क्या है?

Meet raise hand RyoKawamata द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is a Chrome extension that allows you to control the Raise button with real hand movements"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Meet raise hand एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Meet raise hand Meet raise hand
ID hblejdjcncfdlcjdjcjipngpkadmppca
आधिकारिक URL https://chrome.google.com/webstore/detail/meet-raise-hand/hblejdjcncfdlcjdjcjipngpkadmppca
विवरण This is a Chrome extension that allows you to control the Raise button with real hand movements
फ़ाइल का आकार 268 KB
स्थापना संख्या 484
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2021-08-22
प्रकाशन तिथि 2021-08-22
डेवलपर RyoKawamata
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/kawamataryo/meet-raise-hand
समर्थित भाषाएँ 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"
    ]
}