Auto WhatsApp Translator

Auto WhatsApp Translator

Translate incoming and outgoing WhatsApp messages to different languages in real time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Auto WhatsApp Translator",
  "version": "1.0.7",
  "description": "Translate incoming and outgoing WhatsApp messages to different languages in real time.",
  "icons": {
    "16": "images/icons/icon16.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "images/icons/icon48.png",
    "default_popup": "html/popup.html"
  },
  "author": "Fun Development",
  "background": {
    "persistent": true,
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/content.js"
      ],
      "matches": [
        "https://*.whatsapp.com/*"
      ]
    },
    {
      "css": [
        "css/translator.css"
      ],
      "js": [
        "js/translator.js"
      ],
      "matches": [
        "https://*.translate.google.com/*"
      ]
    }
  ],
  "omnibox": {
    "keyword": "WhatsApp translator"
  },
  "options_page": "html/options.html",
  "permissions": [
    "storage",
    "https://*.whatsapp.com/*"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "web_accessible_resources": [
    "js/page.js",
    "js/content.js",
    "css/content.css",
    "js/translator.js",
    "css/translator.css"
  ]
}