Dictionary

Dictionary

Search words on Wiktionary.org

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Dictionary",
  "description": "Search words on Wiktionary.org",
  "version": "0.3.3",
  "minimum_chrome_version": "116",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "action": {
    "default_title": "Dictionary"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "define-selected-word.js"
      ],
      "css": [
        "wiktionary-popup.css"
      ]
    }
  ],
  "commands": {
    "toggle-popup-mode": {
      "suggested_key": {
        "default": "Alt+P"
      },
      "description": "Toggle popup mode"
    }
  },
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "permissions": [
    "sidePanel",
    "contextMenus",
    "storage"
  ]
}