OLD | NEW |
(Empty) | |
| 1 { |
| 2 "name": "Talking Alarm Clock", |
| 3 "version": "1.3", |
| 4 "description": "A clock with two configurable alarms that will play a sound an
d speak a phrase of your choice.", |
| 5 "permissions": [ "background", "tts" ], |
| 6 |
| 7 "background_page": "background.html", |
| 8 |
| 9 "popup": "popup.html", |
| 10 |
| 11 "browser_action": { |
| 12 "default_icon": "clock-19.png", |
| 13 "default_title": "Talking Alarm Clock", |
| 14 "default_popup": "popup.html" |
| 15 }, |
| 16 |
| 17 "icons": { |
| 18 "16": "clock-16.png", |
| 19 "48": "clock-48.png", |
| 20 "128": "clock-128.png", |
| 21 "256": "clock-256.png" |
| 22 } |
| 23 } |
OLD | NEW |