Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 // Extension ID: nbpagnldghgfoolbancepceaanlmhfmd | |
| 3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDbHXRPiq2De9EJ+4pvNN6uE/D2avxrqy LSpA/Hq3II+btkPl1gboY3oUPTfevpVOFa90Y1c1b3/W682dXqybT0klIvFLKhdQx0LiVqSUQyIaDrwO CSo/ZcukbEwDRojegWymCjHvX6WZk4kKZzTJYzY1vrp0TWKLhttEMN9KFmowIDAQAB", | |
| 4 | |
| 5 "name": "Hotword triggering", | |
| 6 "version": "0.0.1.0", | |
| 7 "manifest_version": 2, | |
| 8 | |
| 9 "background": { | |
| 10 "scripts": ["manager.js"], | |
| 11 "persistent": false | |
| 12 }, | |
| 13 | |
| 14 "permissions": [ | |
| 15 "*://*.google.com/*", | |
| 16 "chrome://newtab/", | |
| 17 "hotwordPrivate", | |
| 18 "tabs" | |
| 19 ], | |
| 20 | |
| 21 "externally_connectable": { | |
| 22 "matches": [ | |
| 23 "*://*.google.com/*", | |
| 24 "chrome://newtab/" | |
| 25 ] | |
| 26 }, | |
| 27 | |
| 28 "import": [ | |
| 29 { | |
| 30 // TODO(amistry): For now, use a locally modified version of the external | |
|
James Hawkins
2014/08/08 09:20:18
FWIW I don't think comments are supported in manif
Anand Mistry (off Chromium)
2014/08/11 00:43:59
In what way? Locally, I have working extension tha
| |
| 31 // hotword extension. Replace with the ID of the new shared module | |
| 32 // containing the hotword detector. | |
| 33 "id": "bepbmhgboaologfdajaanbcjmnhjmhfn" | |
| 34 } | |
| 35 ], | |
| 36 | |
| 37 "minimum_chrome_version": "38" | |
| 38 } | |
| OLD | NEW |