Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Side by Side Diff: chrome/browser/resources/hotword/manifest.json

Issue 493203004: Add a StateManager for managing hotwording state based on various factors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@hotword-nacl-manager
Patch Set: Address review comments. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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.0", 6 "version": "0.0.1.1",
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 "manager.js" 17 "manager.js"
17 ], 18 ],
18 "persistent": false 19 "persistent": false
19 }, 20 },
20 21
21 "permissions": [ 22 "permissions": [
22 "*://*.google.com/*", 23 "*://*.google.com/*",
23 "chrome://newtab/", 24 "chrome://newtab/",
24 "chrome://resources/", 25 "chrome://resources/",
26 "audioCapture",
25 "hotwordPrivate", 27 "hotwordPrivate",
28 "management",
26 "tabs" 29 "tabs"
27 ], 30 ],
28 31
29 "externally_connectable": { 32 "externally_connectable": {
30 "matches": [ 33 "matches": [
31 "*://*.google.com/*", 34 "*://*.google.com/*",
32 "chrome://newtab/" 35 "chrome://newtab/"
33 ] 36 ]
34 }, 37 },
35 38
36 "import": [ 39 "import": [
37 { 40 {
38 // TODO(amistry): For now, use a locally modified version of the external 41 // TODO(amistry): For now, use a locally modified version of the external
39 // hotword extension. Replace with the ID of the new shared module 42 // hotword extension. Replace with the ID of the new shared module
40 // containing the hotword detector. 43 // containing the hotword detector.
41 "id": "bepbmhgboaologfdajaanbcjmnhjmhfn" 44 "id": "bepbmhgboaologfdajaanbcjmnhjmhfn"
42 } 45 }
43 ], 46 ],
44 47
48 "content_security_policy": "object-src 'none'; script-src chrome://resources ' self'",
45 "minimum_chrome_version": "38" 49 "minimum_chrome_version": "38"
46 } 50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698