Meet raise hand
This is a Chrome extension that allows you to control the Raise button with real hand movements
What is Meet raise hand?
Meet raise hand is a Chrome extension developed by RyoKawamata, and its main feature is "This is a Chrome extension that allows you to control the Raise button with real hand movements".
Extension Screenshots
Download Meet raise hand Extension CRX File
Download Meet raise hand extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This is a Chrome extension that allows you to control the Raise button with real hand movements. ## 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.
Extension Basic Information
Name | |
ID | hblejdjcncfdlcjdjcjipngpkadmppca |
Official URL | https://chrome.google.com/webstore/detail/meet-raise-hand/hblejdjcncfdlcjdjcjipngpkadmppca |
Description | This is a Chrome extension that allows you to control the Raise button with real hand movements |
File Size | 268 KB |
Installation Count | 484 |
Current Version | 0.0.1 |
Last Updated | 2021-08-22 |
Publish Date | 2021-08-22 |
Developer | RyoKawamata |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/kawamataryo/meet-raise-hand |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Meet raise 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" ] } |