ChatM.AI - Web-wide Wonders, One Chatbot!

ChatM.AI - Web-wide Wonders, One Chatbot!

Embed an AI chatbot in your browser. It guides and enriches your web journey, making each site visit an engaging dialogue.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatM.AI - Web-wide Wonders, One Chatbot!",
  "description": "Embed an AI chatbot in your browser. It guides and enriches your web journey, making each site visit an engaging dialogue.",
  "version": "0.0.0.1",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.js",
        "icon16.png",
        "popup.js",
        "chat-integration.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ]
}