Supernormal: AI Meeting Notes

Supernormal: AI Meeting Notes

Call notes loved by extraordinary teams

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Supernormal: AI Meeting Notes",
  "description": "Call notes loved by extraordinary teams",
  "manifest_version": 3,
  "action": {
    "default_title": "Supernormal",
    "default_icon": "./icons/icon128.png",
    "default_popup": "./popup.html"
  },
  "icons": {
    "16": "./icons/icon16.png",
    "32": "./icons/icon32.png",
    "48": "./icons/icon48.png",
    "128": "./icons/icon128.png"
  },
  "minimum_chrome_version": "111.0.0.0",
  "content_scripts": [
    {
      "js": [
        "./googlemeetrtcplug.bundle.js"
      ],
      "world": "MAIN",
      "run_at": "document_start",
      "matches": [
        "*://meet.google.com/*-*-*"
      ]
    },
    {
      "js": [
        "./controls.bundle.js"
      ],
      "run_at": "document_end",
      "matches": [
        "*://meet.google.com/",
        "*://meet.google.com/*-*-*"
      ]
    }
  ],
  "background": {
    "service_worker": "./background.bundle.js"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.html",
        "*.svg",
        "*.png",
        "googlemeetrtcplug.bundle.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "host_permissions": [
    "*://meet.google.com/*-*-*"
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:3001/*",
      "https://app.staging.supernormal.com/*",
      "https://app.supernormal.com/*"
    ]
  },
  "version": "3.3.34"
}