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

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

Issue 423083002: Add new hotword extension for built-in hotword triggering. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase onto 442183002 Created 6 years, 4 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
« no previous file with comments | « chrome/browser/resources/hotword/manager.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/hotword/manager.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698