Sync raise a hand

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

Sync raise a hand là gì?

Sync raise a hand là một tiện ích mở rộng Chrome được phát triển bởi RyoKawamata, và tính năng chính của nó là "This is a Chrome extension that allows you to control the Raise button with real hand movements".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sync raise a hand

Tải xuống các tệp mở rộng Sync raise a hand dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        ## 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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sync raise a hand Sync raise a hand
ID aacolcbidcmmhkilmmgfebmcghpkdngg
URL Chính Thức https://chromewebstore.google.com/detail/sync-raise-a-hand/aacolcbidcmmhkilmmgfebmcghpkdngg
Mô tả This is a Chrome extension that allows you to control the Raise button with real hand movements
Kích Thước Tệp 268 KB
Số Lần Cài Đặt 33
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2021-08-24
Ngày Phát Hành 2021-08-23
Nhà Phát Triển RyoKawamata
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kawamataryo/sync-raise-a-hand
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sync raise a 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"
    ]
}