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によって開発されたChromeの拡張機能で、その主な機能は「This is a Chrome extension that allows you to control the Raise button with real hand movements」です。

拡張機能のスクリーンショット

screenshot

Meet raise hand拡張機能のCRXファイルをダウンロード

Meet raise hand拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}