Text To Speech Alternative

Text To Speech Alternative

Read Website Text Using Voice

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Text To Speech Alternative",
  "short_name": "TTS Alt",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Read Website Text Using Voice",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "name": "Manipulate DOM",
    "icons": [
      "icon.png"
    ],
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "js": [
        "content.js",
        "background.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}