Multi Chat - All Chat In One For You

Multi Chat - All Chat In One For You

Merge all chats into one with Multi Chat. One platform, all communication. Easy, seamless, and unified.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "version": "1.0.2",
  "homepage_url": "https://teleplus.io/",
  "description": "__MSG_description__",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "128": "img/logo.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": {
      "128": "img/logo.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html",
        "icons/icon128.png",
        "icons/logo.png",
        "icons/*.png",
        "fonts/*",
        "img/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}