OLD | NEW |
1 { | 1 { |
2 // Extension ID: nbpagnldghgfoolbancepceaanlmhfmd | 2 // Extension ID: nbpagnldghgfoolbancepceaanlmhfmd |
3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDbHXRPiq2De9EJ+4pvNN6uE/D2avxrqy
LSpA/Hq3II+btkPl1gboY3oUPTfevpVOFa90Y1c1b3/W682dXqybT0klIvFLKhdQx0LiVqSUQyIaDrwO
CSo/ZcukbEwDRojegWymCjHvX6WZk4kKZzTJYzY1vrp0TWKLhttEMN9KFmowIDAQAB", | 3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDbHXRPiq2De9EJ+4pvNN6uE/D2avxrqy
LSpA/Hq3II+btkPl1gboY3oUPTfevpVOFa90Y1c1b3/W682dXqybT0klIvFLKhdQx0LiVqSUQyIaDrwO
CSo/ZcukbEwDRojegWymCjHvX6WZk4kKZzTJYzY1vrp0TWKLhttEMN9KFmowIDAQAB", |
4 | 4 |
5 "name": "Hotword triggering", | 5 "name": "Hotword triggering", |
6 "version": "0.0.1.1", | 6 "version": "0.0.1.2", |
7 "manifest_version": 2, | 7 "manifest_version": 2, |
8 | 8 |
9 "background": { | 9 "background": { |
10 "scripts": [ | 10 "scripts": [ |
11 "chrome://resources/js/cr.js", | 11 "chrome://resources/js/cr.js", |
12 "chrome://resources/js/util.js", | 12 "chrome://resources/js/util.js", |
13 "chrome://resources/js/cr/event_target.js", | 13 "chrome://resources/js/cr/event_target.js", |
14 "constants.js", | 14 "constants.js", |
15 "nacl_manager.js", | 15 "nacl_manager.js", |
16 "state_manager.js", | 16 "state_manager.js", |
| 17 "page_audio_manager.js", |
17 "manager.js" | 18 "manager.js" |
18 ], | 19 ], |
19 "persistent": false | 20 "persistent": false |
20 }, | 21 }, |
21 | 22 |
22 "permissions": [ | 23 "permissions": [ |
23 "*://*.google.com/*", | 24 "*://*.google.com/*", |
24 "chrome://newtab/", | 25 "chrome://newtab/", |
25 "chrome://resources/", | 26 "chrome://resources/", |
26 "audioCapture", | 27 "audioCapture", |
(...skipping 14 matching lines...) Expand all Loading... |
41 // TODO(amistry): For now, use a locally modified version of the external | 42 // TODO(amistry): For now, use a locally modified version of the external |
42 // hotword extension. Replace with the ID of the new shared module | 43 // hotword extension. Replace with the ID of the new shared module |
43 // containing the hotword detector. | 44 // containing the hotword detector. |
44 "id": "bepbmhgboaologfdajaanbcjmnhjmhfn" | 45 "id": "bepbmhgboaologfdajaanbcjmnhjmhfn" |
45 } | 46 } |
46 ], | 47 ], |
47 | 48 |
48 "content_security_policy": "object-src 'none'; script-src chrome://resources '
self'", | 49 "content_security_policy": "object-src 'none'; script-src chrome://resources '
self'", |
49 "minimum_chrome_version": "38" | 50 "minimum_chrome_version": "38" |
50 } | 51 } |
OLD | NEW |