Multi Messenger for WhatsApp

Multi Messenger for WhatsApp

Easy access to WhatsApp and all the mainstream messengers via Chrome toolbar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "action": {
    "default_icon": "img/i-48.png"
  },
  "version": "1.0.3",
  "icons": {
    "16": "img/i-16.png",
    "19": "img/i-19.png",
    "38": "img/i-38.png",
    "48": "img/i-48.png",
    "96": "img/i-96.png",
    "128": "img/i-128.png",
    "256": "img/i-256.png"
  },
  "background": {
    "service_worker": "js/bg.js"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "js": [
        "js/tg_content.js"
      ],
      "matches": [
        "*://web.telegram.org/*"
      ],
      "all_frames": true
    },
    {
      "js": [
        "js/wtp_content.js"
      ],
      "matches": [
        "*://web.whatsapp.com/*"
      ],
      "all_frames": true
    },
    {
      "js": [
        "js/sk_content.js"
      ],
      "matches": [
        "*://web.skype.com/*"
      ],
      "all_frames": true
    },
    {
      "js": [
        "js/jq.min.js",
        "js/txtme_content.js"
      ],
      "matches": [
        "*://txtme.online/*"
      ],
      "all_frames": true
    },
    {
      "js": [
        "js/redirect-link.js",
        "js/chunk-vendors.js"
      ],
      "matches": [
        "*://web.whatsapp.com/*"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'"
  },
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules_1.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "images/*",
        "fonts/*"
      ],
      "matches": [
        "*://web.whatsapp.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}