Popup dictionary with pronunciation

Popup dictionary with pronunciation

Double-click any word to see its definition. Also, you can quickly see all the words that you have looked up each day. It helps you build your vocabulary over time. WE DON'T HAVE ACCESS TO THE WORDS YOU LOOKUP!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Buttress Vocabulary",
  "version": "2.2.1",
  "description": "Strengthen your vocabulary while reading things on browser.",
  "browser_action": {
    "default_icon": "icons/128book.png",
    "default_title": "ButtressVocab",
    "default_popup": "popup/index.html"
  },
  "icons": {
    "128": "icons/128book.png"
  },
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "scripts/jquery-3.3.1.min.js",
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "scripts/jquery-3.3.1.min.js",
        "scripts/presenter.js"
      ]
    }
  ]
}