Examine source code of Monica - Your AI Copilot powered by ChatGPT, DeepSeek

Inspect and view changes in Monica - Your AI Copilot powered by ChatGPT, DeepSeek 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
{
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "7.9.0",
  "manifest_version": 3,
  "icons": {
    "16": "static/monicaLogo.png",
    "32": "static/monicaLogo.png",
    "48": "static/monicaLogo.png",
    "128": "static/monicaLogo.png"
  },
  "action": {
    "default_icon": {
      "16": "static/monicaLogo.png",
      "32": "static/monicaLogo.png",
      "48": "static/monicaLogo.png",
      "128": "static/monicaLogo.png"
    },
    "default_popup": "monicaPopup.html"
  },
  "options_ui": {
    "page": "monicaOptions.html",
    "open_in_tab": true
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "scripting",
    "contextMenus"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "static/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "chatTab.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://monica.im/*",
      "https://powerup.monica.im/*",
      "https://monica.butterfly-effect.dev/*"
    ]
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "Command+M"
      }
    },
    "run-monica-on-new-tab": {
      "description": "Open Chat Tab"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}