Simple Text to Speech

Simple Text to Speech

Select the text you want to hear, right click and select 'Speak selection'

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "name": "Simple Text to Speech",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "description": "Select the text you want to hear, right click and select 'Speak selection'",
  "icons": {
    "16": "images/icon-16.png",
    "19": "images/icon-19.png",
    "38": "images/icon-38.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js",
      "scripts/responsivevoice.js"
    ]
  },
  "manifest_version": 2,
  "permissions": [
    "contextMenus",
    "background",
    "tabs",
    "https://*/*",
    "http://*/*"
  ],
  "version": "1.0.1",
  "web_accessible_resources": [
    "scripts/jquery-1.11.2.min.js"
  ]
}