LEO Dictionaries

LEO Dictionaries

Adds LEOs dictionaries to the context menu. Select text in any webpage and open the context menu to look up words quickly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "LEO Dictionaries",
  "version": "5.0.0",
  "description": "Adds LEOs dictionaries to the context menu. Select text in any webpage and open the context menu to look up words quickly.",
  "icons": {
    "16": "icons/leo-16.png",
    "48": "icons/leo-48.png",
    "96": "icons/leo-96.png"
  },
  "default_locale": "en",
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "background": {
    "service_worker": "contextMenu.js"
  },
  "commands": {
    "search_ende": {
      "suggested_key": {
        "default": "Ctrl+Shift+E"
      },
      "description": "Search English-German dictionary"
    }
  }
}