Examine source code of text To Speech

Inspect and view changes in text To Speech source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
    }
  ]
}