Multi Chat - Messenger for WhatsApp

Multi Chat - Messenger for WhatsApp

Open WhatsApp and other popular messengers on desktop easily and get access to all your chats. Telegram Line and others

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "short_name": "__MSG_name__",
  "description": "__MSG_description__",
  "icons": {
    "16": "icons/icon16.png",
    "19": "icons/icon19.png",
    "38": "icons/icon38.png",
    "48": "icons/icon48.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png",
    "256": "icons/icon256.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "*://*/*",
    "tabs",
    "storage",
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "system.display"
  ],
  "default_locale": "en",
  "manifest_version": 2,
  "version": "1.1.10",
  "browser_action": {
    "default_icon": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "js": [
        "js/telegram_content_start.js"
      ],
      "matches": [
        "*://web.telegram.org/*"
      ],
      "all_frames": true
    },
    {
      "run_at": "document_start",
      "js": [
        "js/whatsapp_content.js"
      ],
      "matches": [
        "*://web.whatsapp.com/*"
      ],
      "all_frames": true
    },
    {
      "run_at": "document_start",
      "js": [
        "js/skype_content.js"
      ],
      "matches": [
        "*://web.skype.com/*"
      ],
      "all_frames": true
    },
    {
      "run_at": "document_start",
      "js": [
        "js/jquery.min.js",
        "js/inject.js",
        "js/multichat_content.js"
      ],
      "css": [
        "css/multichat.css"
      ],
      "matches": [
        "*://multi-chat.net/*"
      ],
      "all_frames": true
    }
  ]
}