TTS Reader

TTS Reader

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

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "tts_reader.html"
  },
  "browser_action": {
    "default_icon": "images/ttsreader_smallicon.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_title__"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/addSpeech.js"
      ],
      "matches": [
        "<all_urls>",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_desc__",
  "icons": {
    "16": "images/ttsreader_smallicon.png",
    "128": "images/ttsreader_bigicon.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "14",
  "name": "TTS Reader",
  "options_page": "options.html",
  "permissions": [
    "<all_urls>",
    "contextMenus",
    "ttsEngine",
    "tts",
    "tabs",
    "webRequest",
    "webNavigation",
    "unlimitedStorage",
    "webRequestBlocking",
    "https://*/*"
  ],
  "tts_engine": {
    "voices": [
      {
        "event_types": [
          "start",
          "marker",
          "end"
        ],
        "gender": "female",
        "lang": "en-US",
        "voice_name": "Google TTS"
      }
    ]
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.1.8"
}