Leexi - Google Meet recording

Leexi - Google Meet recording

Never forget to record your Google Meet video conferences again and find them in the Leexi app in one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Leexi - Google Meet recording",
  "description": "Never forget to record your Google Meet video conferences again and find them in the Leexi app in one click.",
  "version": "2.0.3",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "128": "icon/128.png",
    "256": "icon/256.png",
    "512": "icon/512.png"
  },
  "author": "Leexi",
  "permissions": [
    "storage",
    "identity"
  ],
  "host_permissions": [
    "https://meet.google.com/*"
  ],
  "oauth2": {
    "client_id": "204744528517-tdg1438b6odr85fp165ki7o68uddg4fm.apps.googleusercontent.com",
    "scopes": [
      "email",
      "profile"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "panel.html"
      ],
      "matches": [
        "https://meet.google.com/*"
      ]
    },
    {
      "resources": [
        "content-scripts/content.css"
      ],
      "matches": [
        "https://meet.google.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "\"Leexi - Google Meet recording",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "content-scripts/content.js"
      ]
    }
  ]
}