Meet raise hand
This is a Chrome extension that allows you to control the Raise button with real hand movements
什麼是Meet raise hand?
Meet raise hand是由RyoKawamata開發的Chrome擴展程式,該擴展的主要功能是“This is a Chrome extension that allows you to control the Raise button with real hand movements”。
擴展截圖
下載Meet raise hand擴展crx文件
下載Meet raise hand擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | hblejdjcncfdlcjdjcjipngpkadmppca |
官方網址 | https://chrome.google.com/webstore/detail/meet-raise-hand/hblejdjcncfdlcjdjcjipngpkadmppca |
簡介 | This is a Chrome extension that allows you to control the Raise button with real hand movements |
檔案大小 | 268 KB |
安裝次數 | 484 |
目前版本 | 0.0.1 |
更新時間 | 2021-08-22 |
上架時間 | 2021-08-22 |
開發者 | RyoKawamata |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/kawamataryo/meet-raise-hand |
支援的語言 | 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" ] } |