text To Speech

text To Speech

convert text to speech from website or by pasting it

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "text To Speech",
  "description": "convert text to speech from website or by pasting it",
  "version": "1.0",
  "manifest_version": 2,
  "author": "ae",
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "textToSpeech.html"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "textToSpeech.js"
      ],
      "run_at": "document_end"
    }
  ]
}