Notification TTS

Notification TTS

A ttsEngine extension for Google Chrome which displays sentences in a desktop notification. This is intended to provide a "silent"…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.0.0.1",
  "name": "Notification TTS",
  "icons": {
    "128": "icon_128.png"
  },
  "permissions": [
    "ttsEngine",
    "notifications",
    "storage"
  ],
  "options_page": "options.html",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "tts_engine": {
    "voices": [
      {
        "voice_name": "Notification",
        "event_types": [
          "start",
          "end"
        ]
      }
    ]
  }
}