RHTRH – Raise Hand To Raise Hand

RHTRH – Raise Hand To Raise Hand

Raise your hand on Google Meet by raising your hand in real life

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RHTRH – 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
}