TheFreeDictionary.com Lookup

TheFreeDictionary.com Lookup

This extension adds a context menu to enable lookup of selected word on www.thefreedictionary.com. You simply double any word on a page and right click to access a simple link that opens up a new tab that pulls up the definition of that word.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "TheFreeDictionary.com Lookup",
  "version": "2.1resigned1",
  "description": "Adds context menu to lookup selected words on www.thefreedictionary.com.",
  "background": {
    "scripts": [
      "src/index.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "src/contextHandler.js"
      ]
    }
  ],
  "permissions": [
    "menus",
    "tabs"
  ],
  "applications": {
    "gecko": {
      "id": "{47F7DAA8-DB46-4FE2-87B0-C6D7C8DD2F23}",
      "strict_min_version": "42.0"
    }
  }
}