콜라보(Callabo) - 미팅을 알아서 기록하고 분석해주는 AI비서

콜라보(Callabo) - 미팅을 알아서 기록하고 분석해주는 AI비서

미팅 일정과 상관없이 브라우저에서 원하는 화면을 즉시 녹화해 보세요.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.2413.0",
  "action": {
    "default_popup": "popup.html",
    "default_icon": "logo.png"
  },
  "icons": {
    "16": "callabo_icon_16.png",
    "48": "callabo_icon_48.png",
    "128": "callabo_icon_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "homepage_url": "https://callabo.ai",
  "host_permissions": [
    "https://callabo.ai/*",
    "https://api.callabo.ai/*",
    "https://callabo-cloud-storage-production.s3.amazonaws.com/*",
    "https://api.amplitude.com/*",
    "https://*.sentry.io/api/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "meetRecorder.js"
      ]
    }
  ],
  "permissions": [
    "scripting",
    "notifications",
    "offscreen"
  ],
  "options_page": "options.html",
  "default_locale": "ko"
}