Wondrful: AI meeting summary and automation

Wondrful: AI meeting summary and automation

Transcribe and summarise meetings while automating the post-meeting follow-up emails with AI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Wondrful: AI meeting summary and automation",
  "version": "1.1",
  "description": "Transcribe and summarise meetings while automating the post-meeting follow-up emails with AI.",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'wasm-unsafe-eval' 'self'; object-src 'self';"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "assets/style.css"
      ],
      "js": [
        "content-script/index.js",
        "content-script/inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/*",
        "content-script/*"
      ]
    }
  ],
  "manifest_version": 3
}