Examine source code of Bigmind

Inspect and view changes in Bigmind source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bigmind",
  "version": "1.03",
  "description": "Bring brilliance to every meeting",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "offscreen",
    "background",
    "storage",
    "cookies",
    "unlimitedStorage",
    "sidePanel"
  ],
  "host_permissions": [
    "https://meet.google.com/*",
    "https://*.bigmind.ai/*"
  ],
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "rtc-override.js",
        "offscreen.html",
        "offscreen.js",
        "logo.svg",
        "logo-text.svg",
        "flags/*.svg",
        "sidepanel.html",
        "sidepanel/index.js",
        "icons/*.png",
        "logo-white.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "js": [
        "meet-content.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "http://localhost:3000/*",
        "https://app.bigmind.ai/*",
        "https://app-local.bigmind.dev/*",
        "https://app.bigmind.dev/*"
      ],
      "js": [
        "app-content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "externally_connectable": {
    "matches": [
      "https://*.bigmind.ai/*",
      "http://localhost:3000/*",
      "https://*.bigmind.dev/*"
    ]
  },
  "side_panel": {
    "default_path": "sidepanel.html"
  }
}