English Dictionary Anywhere - Definition PopUp

English Dictionary Anywhere - Definition PopUp

English Dictionary is an extension that displays the definition of any word live and everywhere on the page you're browsing. Just toggle-on for the tab you want and double-click / select the word and you're good to go.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "English Dictionary",
  "version": "1.2",
  "icons": {
    "128": "Dictionarydisabled.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "defstyle.css"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "webNavigation",
    "webRequest",
    "https://lex-audio.useremarkable.com/mp3/*",
    "https://api.dictionaryapi.dev/api/v2/entries/en/*"
  ],
  "browser_action": {
    "default_icon": "Dictionarydisabled.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}