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 "app": { | 6 "app": { |
7 "channel": "stable", | 7 "channel": "stable", |
8 "extension_types": ["packaged_app", "hosted_app", "platform_app"] | 8 "extension_types": ["packaged_app", "hosted_app", "platform_app"] |
9 }, | 9 }, |
10 "background": { | 10 "background": { |
11 "channel": "stable", | 11 "channel": "stable", |
12 "extension_types": [ | 12 "extension_types": [ |
13 "extension", "packaged_app", "hosted_app", "platform_app" | 13 "extension", "packaged_app", "hosted_app", "platform_app" |
14 ] | 14 ] |
15 }, | 15 }, |
| 16 "background.persistent": { |
| 17 "channel": "dev", |
| 18 "extension_types": [ |
| 19 "extension", "packaged_app", "platform_app" |
| 20 ], |
| 21 "min_manifest_version": 2 |
| 22 }, |
16 "background_page": { | 23 "background_page": { |
17 "channel": "stable", | 24 "channel": "stable", |
18 "extension_types": [ | 25 "extension_types": [ |
19 "extension", "packaged_app", "hosted_app", "platform_app" | 26 "extension", "packaged_app", "hosted_app", "platform_app" |
20 ], | 27 ], |
21 "max_manifest_version": 1 | 28 "max_manifest_version": 1 |
22 }, | 29 }, |
23 "browser_action": { | 30 "browser_action": { |
24 "channel": "stable", | 31 "channel": "stable", |
25 "extension_types": ["extension"] | 32 "extension_types": ["extension"] |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 "channel": "stable", | 197 "channel": "stable", |
191 "extension_types": "all" | 198 "extension_types": "all" |
192 }, | 199 }, |
193 "web_accessible_resources": { | 200 "web_accessible_resources": { |
194 "channel": "stable", | 201 "channel": "stable", |
195 "extension_types": [ | 202 "extension_types": [ |
196 "extension", "packaged_app", "hosted_app", "platform_app" | 203 "extension", "packaged_app", "hosted_app", "platform_app" |
197 ] | 204 ] |
198 } | 205 } |
199 } | 206 } |
OLD | NEW |