Bluedot: AI Meeting Recorder & Notetaker

Bluedot: AI Meeting Recorder & Notetaker

Press 🔵 to record, transcribe and summarise your Google Meet with AI generated notes adapted to your needs.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bluedot: AI Meeting Recorder & Notetaker",
  "description": "Press 🔵 to record, transcribe and summarise your Google Meet with AI generated notes adapted to your needs.",
  "version": "0.0.59",
  "action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "32": "images/icon-32.png"
    }
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twiso.co/*",
        "http://*.twiso.co/*",
        "*://*.app.bluedothq.com/*"
      ],
      "run_at": "document_start",
      "world": "MAIN",
      "js": [
        "scripts/installed_identifier.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "tabs",
    "desktopCapture",
    "tabCapture"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/meetComments.css",
        "css/meetOverlay.css",
        "css/meet.css",
        "css/msTeams.css",
        "css/errorPopup.css",
        "audio/start.mp3",
        "audio/finish.mp3",
        "images/*.*",
        "fonts/*.woff2",
        "microphone-sources.html",
        "camera-sources.html",
        "camera.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.twiso.co/*",
      "*://*.app.bluedothq.com/*"
    ]
  },
  "commands": {
    "start-meetings-recording": {
      "suggested_key": "Ctrl+Shift+S",
      "description": "Capture Google Meet"
    },
    "start-meetings-recording-space": {
      "suggested_key": "Ctrl+Shift+Space",
      "description": "Capture Google Meet"
    }
  }
}