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คืออะไร?

Sync raise a hand เป็นส่วนขยายของ Chrome ที่พัฒนาโดย RyoKawamata และคุณลักษณะหลักของมันคือ "This is a Chrome extension that allows you to control the Raise button with real hand movements"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sync raise a hand

ดาวน์โหลดไฟล์ส่วนขยาย Sync raise a hand ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Sync raise a hand Sync raise a hand
ID aacolcbidcmmhkilmmgfebmcghpkdngg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sync-raise-a-hand/aacolcbidcmmhkilmmgfebmcghpkdngg
คำอธิบาย This is a Chrome extension that allows you to control the Raise button with real hand movements
ขนาดไฟล์ 268 KB
จำนวนการติดตั้ง 33
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2021-08-24
วันที่เผยแพร่ 2021-08-23
ผู้พัฒนา RyoKawamata
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kawamataryo/sync-raise-a-hand
ภาษาที่รองรับ 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"
    ]
}