Simple Translator - Dictionary

Simple Translator - Dictionary

Multilanguage text translator with full-page translation, built-in dictionary, and text-to-speech (TTS) functionality

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "1.8",
  "default_locale": "en",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "options_ui": {
    "page": "htmlComponents/options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "data/bg.js"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "data/*",
        "assets/*",
        "img/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "data/content_scripts.js"
      ]
    }
  ],
  "host_permissions": [
    "*://*/"
  ],
  "action": {
    "default_popup": "htmlComponents/popup.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}