Context Wiktionary

Context Wiktionary

Select word, right click: look up definition/translate on Wiktionary Dictionary. A simple WebExtension that provides a context menu entry to look up selected word on the English Wiktionary. Opens results in a new tab next to the current one.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Context Wiktionary",
  "version": "1.1resigned1",
  "description": "Select word, right click: look up definition/translate on Wiktionary Dictionary. A simple WebExtension that provides a context menu entry to look up selected word on the English Wiktionary. Opens results in a new tab next to the current one.",
  "icons": {
    "48": "icons/icon.svg"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "45.0"
    }
  },
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}