My English Reading Assistant

My English Reading Assistant

Detect unknown words in web pages and display their dictionary definitions to help English learners read English web pages smoothly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "0.8.0",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "default_locale": "en",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "__MSG_extensionDefaultTitle__",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "sidePanel"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.js"
      ],
      "css": []
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "contentScript.css",
        "svg/*",
        "icons/*",
        "images/*",
        "*.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}