SpeakIt! - Text to speech for Chrome

SpeakIt! - Text to speech for Chrome

Tired of reading? Select text you want to read and listen to it. SpeakIt converts text into speech so you no longer need to read.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SpeakIt! - Text to speech for Chrome",
  "version": "0.4",
  "manifest_version": 2,
  "default_locale": "en",
  "minimum_chrome_version": "14",
  "description": "__MSG_desc__",
  "options_page": "options.html",
  "icons": {
    "16": "small_icon.png",
    "128": "images/icon.png"
  },
  "background": {
    "page": "speakit.html"
  },
  "browser_action": {
    "default_icon": "small_icon.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_title__"
  },
  "permissions": [
    "contextMenus",
    "ttsEngine",
    "tts",
    "activeTab",
    "https://translate.google.com/",
    "https://skechboy.com/"
  ],
  "tts_engine": {
    "voices": [
      {
        "event_types": [
          "start",
          "marker",
          "end"
        ],
        "voice_name": "SpeakIt!"
      }
    ]
  }
}