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是由RyoKawamata开发的Chrome扩展程序,该扩展的主要功能是“This is a Chrome extension that allows you to control the Raise button with real hand movements”。
扩展截图
下载Sync raise a hand扩展crx文件
下载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 |
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" ] } |