Speak a div

Speak a div

Speaks the innerHTML of a 'div' with id='spokentext'.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Speak a div",
  "version": "1.1",
  "description": "Speaks the innerHTML of a 'div' with id='spokentext'.",
  "icons": {
    "256": "256.png"
  },
  "minimum_chrome_version": "14",
  "permissions": [
    "tts",
    "tabs",
    "http://*/*"
  ],
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}