SpeakIt! - Text to speech for Microsoft Edge

SpeakIt! - Text to speech for Microsoft Edge

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


{
  "name": "SpeakIt! - Text to speech for Microsoft Edge",
  "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!"
      }
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}