OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 "activeTab": { | 6 "activeTab": { |
7 "channel": "stable", | 7 "channel": "stable", |
8 "extension_types": ["extension", "packaged_app"], | 8 "extension_types": ["extension", "packaged_app"], |
9 "min_manifest_version": 2 | 9 "min_manifest_version": 2 |
10 }, | 10 }, |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
305 "extension_types": ["extension", "packaged_app"] | 305 "extension_types": ["extension", "packaged_app"] |
306 }, | 306 }, |
307 "pointerLock": { | 307 "pointerLock": { |
308 "channel": "dev", | 308 "channel": "dev", |
309 "extension_types": ["platform_app"] | 309 "extension_types": ["platform_app"] |
310 }, | 310 }, |
311 "plugin": { | 311 "plugin": { |
312 "channel": "stable", | 312 "channel": "stable", |
313 "extension_types": ["extension", "packaged_app"] | 313 "extension_types": ["extension", "packaged_app"] |
314 }, | 314 }, |
315 "power": { | |
316 "channel": "dev", | |
317 "platform": "chromeos", | |
318 "extension_types": ["extension", "hosted_app", "packaged_app"] | |
not at google - send to devlin
2013/03/19 21:16:39
why hosted_app?
Daniel Erat
2013/03/19 23:39:38
The intent is to permit e.g. a slide show app to p
not at google - send to devlin
2013/03/20 00:25:50
Ah, cool. Let's include platform_app too, then.
Daniel Erat
2013/03/20 03:45:25
Whoops, I missed this. I'll add it in a second ch
not at google - send to devlin
2013/03/20 14:58:08
Agreed, we need to document this. Packaged is v1,
| |
319 }, | |
315 "privacy": { | 320 "privacy": { |
316 "channel": "stable", | 321 "channel": "stable", |
317 "extension_types": ["extension", "packaged_app"] | 322 "extension_types": ["extension", "packaged_app"] |
318 }, | 323 }, |
319 "proxy": { | 324 "proxy": { |
320 "channel": "stable", | 325 "channel": "stable", |
321 "extension_types": ["extension", "packaged_app"] | 326 "extension_types": ["extension", "packaged_app"] |
322 }, | 327 }, |
323 "pushMessaging": { | 328 "pushMessaging": { |
324 "channel": "stable", | 329 "channel": "stable", |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
475 }, | 480 }, |
476 "webRequestBlocking": { | 481 "webRequestBlocking": { |
477 "channel": "stable", | 482 "channel": "stable", |
478 "extension_types": ["extension", "packaged_app"] | 483 "extension_types": ["extension", "packaged_app"] |
479 }, | 484 }, |
480 "webview": { | 485 "webview": { |
481 "channel": "stable", | 486 "channel": "stable", |
482 "extension_types": ["platform_app"] | 487 "extension_types": ["platform_app"] |
483 } | 488 } |
484 } | 489 } |
OLD | NEW |