Pop-Up Dictionary

Pop-Up Dictionary

Pop-Up Dictionary on selected word. You can use dictionary sites which provide better and more detailed definitions than e.g. google translate.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Pop-Up Dictionary",
  "version": "4.2.3",
  "description": "Pop-Up Dictionary on selected word",
  "icons": {
    "48": "icons/bookicon48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/popupdict-common.js",
        "content/popupdict-content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "lib/popupdict-db.js",
      "background/popupdict-background.js"
    ]
  },
  "options_ui": {
    "page": "settings/settings.html",
    "open_in_tab": true
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "48": "icons/button-48d.png"
    },
    "default_title": "Pop-Up Dictionary",
    "default_popup": "popup/popup.html"
  }
}