Google Meet <=> Home Assistant

Google Meet <=> Home Assistant

Updates a Home Assistant entity state with the status of your Google Meet calls

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Google Meet <=> Home Assistant",
  "version": "0.1.0",
  "description": "Updates a Home Assistant entity state with the status of your Google Meet calls",
  "author": "Colin O'Dell",
  "homepage_url": "https://github.com/colinodell/google-meet-hass-extension",
  "action": {
    "default_icon": {
      "48": "icon48.png",
      "128": "icon128.png"
    },
    "default_title": "Options",
    "default_popup": "options.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://meet.google.com/*",
    "*://*/api/states/*"
  ]
}