| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "Speech Recognizer", | 2 "name": "Speech Recognizer", |
| 3 "version": "1.0", | 3 "version": "1.0", |
| 4 "description": "Recognizes your speech and tells you the most likely result.", | 4 "description": "Recognizes your speech and tells you the most likely result.", |
| 5 | 5 |
| 6 "browser_action": { | 6 "browser_action": { |
| 7 "default_title": "Speech Recognizer", | 7 "default_title": "Speech Recognizer", |
| 8 "default_icon": "start.png" | 8 "default_icon": "start.png" |
| 9 }, | 9 }, |
| 10 | 10 |
| 11 "background_page": "background.html", | 11 "background_page": "background.html", |
| 12 | 12 |
| 13 "permissions": [ | 13 "permissions": [ |
| 14 "experimental" | 14 "experimental" |
| 15 ] | 15 ], |
| 16 "content_security_policy": "default-src 'self'" |
| 16 } | 17 } |
| OLD | NEW |