English Popup Dictionary

English Popup Dictionary

An English Dictionary for Firefox Quantum which gives meaning of a word which is double-click selected on a webpage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "English Popup Dictionary",
  "version": "1.9",
  "description": "An English Dictionary which gives meaning of a word which is double-click selected on a webpage.",
  "icons": {
    "96": "icons/Dico.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "https://api.dictionaryapi.dev/api/",
    "http://xml.admedia.com/",
    "https://api.ipify.org/",
    "http://api.ipstack.com/"
  ],
  "background": {
    "scripts": [
      "./dependencies/jquery-3.5.1.min.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/Dico.png",
    "default_title": "English Popup Dictionary",
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "./dependencies/jquery-3.5.1.min.js",
        "content.js",
        "./dependencies/DOMPurify-master/dist/purify.min.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  }
}