Mavy - Your Personal AI Executive Assistant.

Mavy - Your Personal AI Executive Assistant.

Mavy is your personal AI executive assistant by Mavex.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": "Mavy - Your Personal AI Executive Assistant.",
  "version": "0.18",
  "description": "Mavy is your personal AI executive assistant by Mavex.ai",
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "call-mavy": {
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "Command+M"
      },
      "description": "Summon Mavy."
    }
  },
  "permissions": [
    "scripting",
    "notifications",
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "mavylogo.png",
        "mavex.png",
        "mavylogo.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost/*",
      "https://app.mavex.ai/*",
      "https://stg.mavex.ai/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "contentScript.js",
        "interface.js"
      ]
    }
  ]
}