Auto Meeting Log for Google Meet

Auto Meeting Log for Google Meet

Automatically turns on Google Meet captions and saves them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Auto Meeting Log for Google Meet",
  "version": "1.0",
  "description": "Automatically turns on Google Meet captions and saves them.",
  "permissions": [],
  "action": {
    "default_popup": "options.html",
    "default_icon": {
      "128": "images/128-AutoMeetingLog.png"
    }
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "meetings.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "128": "images/128-AutoMeetingLog.png"
  }
}