Select and Speak - Text to Speech

Select and Speak - Text to Speech

Select and Speak uses iSpeech’s human-quality text-to-speech (TTS) to read any selected text in the browser. It includes many…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_app_name__",
  "version": "2.2.9",
  "description": "",
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "128": "img/icons/icon-play_128.png"
  },
  "options_page": "options.html",
  "author": "Talkz, Inc.",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "default_locale": "en",
  "browser_action": {
    "default_icon": {
      "128": "img/icons/icon-play_128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/icons/*.png",
    "img/*",
    "resources/*"
  ]
}