Chromium Code Reviews| 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.4", | 6 "version": "0.0.1.4", |
| 7 "manifest_version": 2, | 7 "manifest_version": 2, |
| 8 | 8 |
| 9 "background": { | 9 "background": { |
| 10 "scripts": [ | 10 "scripts": [ |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 21 "always_on_manager.js", | 21 "always_on_manager.js", |
| 22 "launcher_manager.js", | 22 "launcher_manager.js", |
| 23 "page_audio_manager.js", | 23 "page_audio_manager.js", |
| 24 "training_manager.js", | 24 "training_manager.js", |
| 25 "manager.js" | 25 "manager.js" |
| 26 ], | 26 ], |
| 27 "persistent": false | 27 "persistent": false |
| 28 }, | 28 }, |
| 29 | 29 |
| 30 "permissions": [ | 30 "permissions": [ |
| 31 "*://*.syd.corp.google.com/*", | |
|
Anand Mistry (off Chromium)
2015/03/10 02:47:28
You probably don't want to check this in, nor the
kcarattini
2015/03/10 04:34:05
Done.
| |
| 31 "*://*.google.at/*", | 32 "*://*.google.at/*", |
| 32 "*://*.google.ca/*", | 33 "*://*.google.ca/*", |
| 33 "*://*.google.com/*", | 34 "*://*.google.com/*", |
| 34 "*://*.google.com.au/*", | 35 "*://*.google.com.au/*", |
| 35 "*://*.google.com.mx/*", | 36 "*://*.google.com.mx/*", |
| 36 "*://*.google.com.br/*", | 37 "*://*.google.com.br/*", |
| 37 "*://*.google.co.jp/*", | 38 "*://*.google.co.jp/*", |
| 38 "*://*.google.co.kr/*", | 39 "*://*.google.co.kr/*", |
| 39 "*://*.google.co.nz/*", | 40 "*://*.google.co.nz/*", |
| 40 "*://*.google.co.uk/*", | 41 "*://*.google.co.uk/*", |
| 41 "*://*.google.co.za/*", | 42 "*://*.google.co.za/*", |
| 42 "*://*.google.de/*", | 43 "*://*.google.de/*", |
| 43 "*://*.google.es/*", | 44 "*://*.google.es/*", |
| 44 "*://*.google.fr/*", | 45 "*://*.google.fr/*", |
| 45 "*://*.google.it/*", | 46 "*://*.google.it/*", |
| 46 "*://*.google.ru/*", | 47 "*://*.google.ru/*", |
| 47 "chrome://newtab/", | 48 "chrome://newtab/", |
| 48 "chrome://resources/", | 49 "chrome://resources/", |
| 49 "audioCapture", | 50 "audioCapture", |
| 50 "hotwordPrivate", | 51 "hotwordPrivate", |
| 51 "idle", | 52 "idle", |
| 52 "management", | 53 "management", |
| 53 "metricsPrivate", | 54 "metricsPrivate", |
| 54 "tabs", | 55 "tabs", |
| 55 "unlimitedStorage" | 56 "unlimitedStorage" |
| 56 ], | 57 ], |
| 57 | 58 |
| 59 "externally_connectable": { | |
| 60 "matches": [ | |
| 61 "*://*.syd.corp.google.com/*", | |
| 62 "*://*.google.at/*", | |
| 63 "*://*.google.ca/*", | |
| 64 "*://*.google.com/*", | |
| 65 "*://*.google.com.au/*", | |
| 66 "*://*.google.com.mx/*", | |
| 67 "*://*.google.com.br/*", | |
| 68 "*://*.google.co.jp/*", | |
| 69 "*://*.google.co.kr/*", | |
| 70 "*://*.google.co.nz/*", | |
| 71 "*://*.google.co.uk/*", | |
| 72 "*://*.google.co.za/*", | |
| 73 "*://*.google.de/*", | |
| 74 "*://*.google.es/*", | |
| 75 "*://*.google.fr/*", | |
| 76 "*://*.google.it/*", | |
| 77 "*://*.google.ru/*", | |
| 78 "chrome://newtab/" | |
| 79 ] | |
| 80 }, | |
| 81 | |
| 58 "import": [ | 82 "import": [ |
| 59 { | 83 { |
| 60 "id": "lccekmodgklaepjeofjdjpbminllajkg" | 84 "id": "lccekmodgklaepjeofjdjpbminllajkg" |
| 61 } | 85 } |
| 62 ], | 86 ], |
| 63 | 87 |
| 64 "content_security_policy": "object-src 'none'; script-src chrome://resources ' self'", | 88 "content_security_policy": "object-src 'none'; script-src chrome://resources ' self'", |
| 65 "minimum_chrome_version": "38" | 89 "minimum_chrome_version": "38" |
| 66 } | 90 } |
| OLD | NEW |