Dictionary - Oxford, Webster and Wikipedia

Dictionary - Oxford, Webster and Wikipedia

Dictionary for multiple languages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "3.0.3",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "activeTab",
    "tts",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.bundle.js"
  },
  "default_locale": "en",
  "action": {
    "default_title": "Dictionary - Oxford, Webster and Wikipedia",
    "default_icon": "images/icon-128.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://imagetext.xyz/*",
      "*://*.imagetext.xyz/*"
    ]
  },
  "icons": {
    "128": "images/icon-128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}