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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Sync raise a hand
قم بتنزيل ملفات الامتداد Sync raise a hand بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
## 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 |
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" ] } |