Quick Translate and Dictionary

Quick Translate and Dictionary

Multilanguage Translator, text translator, translate phrases. Full page translator and dictionary, text to speech (TTS).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.2.9",
  "default_locale": "en",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "js/*",
        "assets/*",
        "icons/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/contentScripts.js"
      ],
      "all_frames": true
    }
  ],
  "host_permissions": [
    "*://*/"
  ],
  "action": {
    "default_popup": "popup/index.html"
  }
}