RHTRH – Raise Hand To Raise Hand
Raise your hand on Google Meet by raising your hand in real life
什么是RHTRH – Raise Hand To Raise Hand?
RHTRH – Raise Hand To Raise Hand是由Adflow开发的Chrome扩展程序,该扩展的主要功能是“Raise your hand on Google Meet by raising your hand in real life”。
扩展截图
下载RHTRH – Raise Hand To Raise Hand扩展crx文件
下载RHTRH – Raise Hand To Raise Hand扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
RHTRH is an open source Chromium extension that raises your (virtual) hand on Google Meet when you raise your (physical) hand. Our AI-powered algorithm is optimised to run smoothly on all devices. RHTRH works with on all Chromium browsers for any organisation using Google Workspace (it is compatible with Google Meet's "raise hand" functionality only – for now at least 🤫) - 🔒 Privacy first: All the computing happens on the device itself. No image ever leaves your laptop! - 🐝 All chromium browsers supported - 🙋♀️ Two modes (choose your preferred one): (i) We all got used to keeping our hands up to speak in school. (ii) Some of us prefer to keep their hands on their keyboards while waiting for their turn to speak. - 👨💻 Completely open source: Contributions and PRs are more than welcome on our Github page Hope you like it! Let us know your feedback ⭐️.
扩展基本信息
名称 | RHTRH – Raise Hand To Raise Hand |
ID | eklmnoflmkgilkjdiocjonfcpdkacplj |
官方URL | https://chromewebstore.google.com/detail/rhtrh-%E2%80%93-raise-hand-to-rai/eklmnoflmkgilkjdiocjonfcpdkacplj |
简介 | Raise your hand on Google Meet by raising your hand in real life |
文件大小 | 195 KB |
安装次数 | 3,599 |
当前版本 | 0.3.1 |
更新时间 | 2021-01-07 |
上架时间 | 2021-01-06 |
评分 | 4.67/5 共3次评分 |
开发者 | Adflow |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://signofactory.it |
帮助页面URL | https://signofactory.it |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "RHTRH \u2013 Raise Hand To Raise Hand", "description": "Raise your hand on Google Meet by raising your hand in real life", "version": "0.3.1", "permissions": [ "declarativeContent" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "web_accessible_resources": [ "js\/bundle.js", "images\/" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/meet.google.com\/*" ], "exclude_matches": [ "*:\/\/meet.google.com\/" ], "js": [ "js\/main.js" ], "all_frames": false } ], "page_action": { "default_popup": "popup\/popup.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |