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 // The default platform app CSP can only be overridden by whitelisted apps. | 10 // The default platform app CSP can only be overridden by whitelisted apps. |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 }, | 69 }, |
70 "chrome_url_overrides": { | 70 "chrome_url_overrides": { |
71 "channel": "stable", | 71 "channel": "stable", |
72 "extension_types": ["extension", "packaged_app"] | 72 "extension_types": ["extension", "packaged_app"] |
73 }, | 73 }, |
74 "commands": { | 74 "commands": { |
75 "channel": "stable", | 75 "channel": "stable", |
76 "extension_types": ["extension", "packaged_app", "platform_app"], | 76 "extension_types": ["extension", "packaged_app", "platform_app"], |
77 "min_manifest_version": 2 | 77 "min_manifest_version": 2 |
78 }, | 78 }, |
| 79 "content_pack": { |
| 80 "channel": "dev", |
| 81 "extension_types": ["extension"] |
| 82 }, |
79 "content_security_policy": { | 83 "content_security_policy": { |
80 "channel": "stable", | 84 "channel": "stable", |
81 // Platform apps have a restricted content security policy that cannot be | 85 // Platform apps have a restricted content security policy that cannot be |
82 // overriden (except for a whitelist of exceptions, see the | 86 // overriden (except for a whitelist of exceptions, see the |
83 // app.content_security_policy whitelist). | 87 // app.content_security_policy whitelist). |
84 "extension_types": ["extension", "packaged_app"] | 88 "extension_types": ["extension", "packaged_app"] |
85 }, | 89 }, |
86 "content_scripts": { | 90 "content_scripts": { |
87 "channel": "stable", | 91 "channel": "stable", |
88 "extension_types": ["extension", "packaged_app"] | 92 "extension_types": ["extension", "packaged_app"] |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 "channel": "stable", | 266 "channel": "stable", |
263 "extension_types": "all" | 267 "extension_types": "all" |
264 }, | 268 }, |
265 "web_accessible_resources": { | 269 "web_accessible_resources": { |
266 "channel": "stable", | 270 "channel": "stable", |
267 "extension_types": [ | 271 "extension_types": [ |
268 "extension", "packaged_app", "hosted_app" | 272 "extension", "packaged_app", "hosted_app" |
269 ] | 273 ] |
270 } | 274 } |
271 } | 275 } |
OLD | NEW |