Talking Alarm Clock

Talking Alarm Clock

A clock with two configurable alarms that will play a sound and speak a phrase of your choice.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Talking Alarm Clock",
  "version": "2",
  "description": "A clock with two configurable alarms that will play a sound and speak a phrase of your choice.",
  "permissions": [
    "background",
    "tts"
  ],
  "background": {
    "scripts": [
      "common.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "clock-19.png",
    "default_title": "Talking Alarm Clock",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "clock-16.png",
    "48": "clock-48.png",
    "128": "clock-128.png",
    "256": "clock-256.png"
  },
  "manifest_version": 2
}