Meet raise hand

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

Apa itu Meet raise hand?

Meet raise hand adalah ekstensi Chrome yang dikembangkan oleh RyoKawamata, dan fitur utamanya adalah "This is a Chrome extension that allows you to control the Raise button with real hand movements".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Meet raise hand

Unduh file ekstensi Meet raise hand dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Meet raise hand Meet raise hand
ID hblejdjcncfdlcjdjcjipngpkadmppca
URL Resmi https://chrome.google.com/webstore/detail/meet-raise-hand/hblejdjcncfdlcjdjcjipngpkadmppca
Deskripsi This is a Chrome extension that allows you to control the Raise button with real hand movements
Ukuran File 268 KB
Jumlah Instalasi 484
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2021-08-22
Tanggal Publikasi 2021-08-22
Pengembang RyoKawamata
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/kawamataryo/meet-raise-hand
Bahasa yang Didukung 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"
    ]
}