Airgram: AI Meeting Notes Taker & Summaries

Airgram: AI Meeting Notes Taker & Summaries

Get an AI meeting assistant that records, transcribes, and summarizes meetings automatically 🤩

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Get an AI meeting assistant that records, transcribes, and summarizes meetings automatically 🤩",
  "version": "2.34.0",
  "name": "Airgram: AI Meeting Notes Taker & Summaries",
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "16": "/images/[email protected]",
      "32": "/images/[email protected]",
      "48": "/images/[email protected]"
    },
    "default_popup": "popup.html",
    "default_title": "Airgram"
  },
  "icons": {
    "16": "/images/[email protected]",
    "32": "/images/[email protected]",
    "48": "/images/[email protected]",
    "128": "/images/[email protected]"
  },
  "permissions": [
    "tabs",
    "tabCapture",
    "activeTab",
    "<all_urls>",
    "cookies",
    "storage",
    "notifications",
    "*://*.airgram.io/*",
    "*://localhost/*",
    "*://*.amazonaws.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    },
    {
      "matches": [
        "http://meet.google.com/*",
        "https://meet.google.com/*"
      ],
      "js": [
        "googleMeetContentScript.bundle.js"
      ]
    },
    {
      "matches": [
        "http://calendar.google.com/*",
        "https://calendar.google.com/*"
      ],
      "js": [
        "googleCalendarContentScript.bundle.js"
      ]
    }
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    "images/*",
    "inject.js",
    "GetMediaAccess.html",
    "Camera.html"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://cdn.lr-in-prod.com; object-src 'self'"
}