Bubbles - AI Meeting Notes & Screen Recorder

Bubbles - AI Meeting Notes & Screen Recorder

Bubbles is a free screen recorder and AI meeting notetaker to help turn conversations into actions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bubbles - AI Meeting Notes & Screen Recorder",
  "short_name": "Bubbles",
  "version": "2.81.1.0",
  "manifest_version": 2,
  "description": "Bubbles is a free screen recorder and AI meeting notetaker to help turn conversations into actions.",
  "background": {
    "scripts": [
      "dist/background-script.min.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "assets/*",
    "dist/static/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.usebubbles.com/*",
      "https://*.localbubbles.com:3000/*",
      "https://dev--usebubbles.netlify.app/*",
      "https://staging--usebubbles.netlify.app/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.usebubbles.com/*",
        "https://*.localbubbles.com:3000/*",
        "https://dev--usebubbles.netlify.app/*",
        "https://staging--usebubbles.netlify.app/*"
      ],
      "js": [
        "dist/content-scripts/no-install-button.min.js"
      ]
    },
    {
      "matches": [
        "https://*.usebubbles.com/faq-access-microphone",
        "https://*.usebubbles.webflow.io/faq-access-microphone",
        "https://*.usebubbles.com/faq-unblock-microphone",
        "https://*.usebubbles.webflow.io/faq-unblock-microphone"
      ],
      "js": [
        "dist/content-scripts/inject-access-mic-iframe.min.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Bubbles",
    "default_icon": {
      "16": "assets/[email protected]",
      "32": "assets/[email protected]",
      "64": "assets/[email protected]"
    }
  },
  "commands": {
    "create_bubble": {
      "suggested_key": {
        "default": "Ctrl+Shift+1",
        "mac": "MacCtrl+Shift+1"
      },
      "description": "Create new bubble"
    }
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "icons": {
    "16": "assets/[email protected]",
    "32": "assets/[email protected]",
    "48": "assets/[email protected]",
    "64": "assets/[email protected]",
    "96": "assets/[email protected]",
    "128": "assets/[email protected]",
    "194": "assets/[email protected]",
    "256": "assets/[email protected]",
    "512": "assets/[email protected]"
  }
}