Speak Dictionary

Speak Dictionary

Speak Dictionary displays the meaning/definition of any word selected by the user on any webpage and also speaks the meaning/definition of the selected word.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Speak Dictionary",
  "author": "Aakash Pawar",
  "description": "Displays and speaks the meaning of word selected on any webpage.",
  "version": "1.2",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background-script.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "source/images/btn_icon_19.png",
      "38": "source/images/btn_icon_38.png"
    },
    "default_popup": "source/index.html",
    "default_title": "Speak Dictionary"
  },
  "icons": {
    "16": "source/images/icon_16.png",
    "48": "source/images/icon_48.png",
    "96": "source/images/icon_96.png",
    "128": "source/images/icon_128.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Q"
      }
    }
  }
}