A clock with two configurable alarms that will play a sound and speak a phrase of your choice.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Datasey Talking Alarm",
"version": "2.1.1",
"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,
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}