Floomy : Save time with Meeting Minutes (MOM)

Floomy : Save time with Meeting Minutes (MOM)

Generate AI-powered MOM with live transcription and snapshots.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Generate AI-powered MOM with live transcription and snapshots.",
  "version": "1.6",
  "name": "Floomy : Save time with Meeting Minutes (MOM)",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApGdumdWDmQ/EyMUkrUKCn4cppmY2fb4kJp/4evLRJitpsp0nJQsJc9ivAf5/ZJqUgemXzKB033fmTSefP4Q+kRMkuYvPI766kINhs79csUqjuBFiyz8Q5cnlmlF8DeGsswSBVUIQyXdPh9NUTQtiypdn/Jg+Tb6Mqw9D149lEREFkJ9KquHbDaOYAMZOu+qU+eUWka8imB0isecG9zlbcHz/MFLrBwD8rZD1uZuv0UnEMk2y2SR+KvQ0B489/Cq7Z3/+vHLBT5mN781BWT52hJXzxhUCaZjOheCtSCOt/+gRzzYuTB9xs0JKigWW2UZpp6w9ev4Y3aIF4sS9/DkuwwIDAQAB",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "contentScript.bundle.js"
      ]
    },
    {
      "matches": [
        "*://chat.openai.com/api/auth/session*"
      ],
      "js": [
        "openAi.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "img/floomy_new_with_bg.png"
  },
  "action": {
    "default_title": " transcript",
    "default_popup": "popup.html",
    "default_icon": {
      "128": "img/floomy_new_with_bg.png"
    }
  },
  "oauth2": {
    "client_id": "83249839159-t6u4evdu50chcleir9mkh0jmk9mo2t4p.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "inject.js",
        "pako.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "identity",
    "activeTab",
    "storage",
    "tabs",
    "downloads"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
    "sandbox": "script-src 'self' 'wasm-unsafe-eval'; sandbox allow-scripts; script-src 'self' 'https://www.googleapis.com'; object-src 'self'"
  },
  "host_permissions": [
    "https://meet.google.com/*",
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.bundle.js"
  }
}