Topicflow Chrome Extension

Topicflow Chrome Extension

View and edit Topicflow meeting notes in Google Meet. Transcribe meeting in Topicflow to enable AI summarization and suggestions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Topicflow Chrome Extension",
  "description": "View and edit Topicflow meeting notes in Google Meet. Transcribe meeting in Topicflow to enable AI summarization and suggestions.",
  "homepage_url": "https://app.topicflow.com",
  "version": "0.3.4",
  "manifest_version": 3,
  "options_page": "options.html",
  "action": {
    "default_popup": "index.html"
  },
  "icons": {
    "16": "img/logo-16.png",
    "32": "img/logo-32.png",
    "48": "img/logo-48.png",
    "128": "img/logo-128.png"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "minimum_chrome_version": "96",
  "web_accessible_resources": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "resources": [
        "img/logo.png",
        "img/logo-48.png",
        "src/meet/rtc.js",
        "src/meet/google-meet.js"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "https://app.topicflow.com/*"
      ],
      "resources": [
        "src/app/insert.js"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "resources": [
        "assets/client-43e02153.js",
        "assets/inject-iframe.jsx-b95b92eb.js"
      ],
      "use_dynamic_url": true
    },
    {
      "matches": [
        "https://app.topicflow.com/*"
      ],
      "resources": [
        "assets/index.js-bf6114c1.js"
      ],
      "use_dynamic_url": true
    }
  ],
  "content_scripts": [
    {
      "js": [
        "assets/inject-iframe.jsx-loader-135c017c.js"
      ],
      "matches": [
        "https://meet.google.com/*"
      ],
      "css": [
        "assets/client-9306dd3d.css"
      ]
    },
    {
      "js": [
        "assets/index.js-loader-c8bb7b9b.js"
      ],
      "matches": [
        "https://app.topicflow.com/*"
      ]
    }
  ],
  "permissions": [
    "declarativeNetRequest",
    "storage"
  ],
  "host_permissions": [
    "https://app.topicflow.com/*",
    "http://localhost:8000/*"
  ]
}