Sync Raise hand

Sync Raise hand

This is a Chrome extension that allows you to control the Raise button with real hand movements

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Sync Raise hand",
  "version": "0.2.1",
  "description": "This is a Chrome extension that allows you to control the Raise button with real hand movements",
  "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"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "19": "./assets/icon-19.png",
    "48": "./assets/icon-48.png",
    "128": "./assets/icon.png"
  },
  "permissions": [],
  "host_permissions": [
    "http://meet.google.com/*",
    "https://meet.google.com/*"
  ]
}