Translator for WhatsApp (Unofficial)

Translator for WhatsApp (Unofficial)

Effortlessly translate WhatsApp chats and messages so you can chat with anyone in over 100 different languages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Translator for WhatsApp (Unofficial)",
  "description": "Effortlessly translate WhatsApp chats and messages so you can chat with anyone in over 100 different languages.",
  "version": "1.2",
  "icons": {
    "16": "images/icons/icon16.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "action": {
    "default_icon": "images/icons/icon16.png",
    "default_popup": "html/popup.html"
  },
  "background": {
    "service_worker": "eventPage.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/content.js",
        "css/content.css",
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.whatsapp.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "all_frames": true
    }
  ],
  "options_page": "html/options.html",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*.whatsapp.com/*"
  ]
}