| 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 "app.background": { | 10 "app.background": { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 }, | 53 }, |
| 54 "chrome_url_overrides": { | 54 "chrome_url_overrides": { |
| 55 "channel": "stable", | 55 "channel": "stable", |
| 56 "extension_types": ["extension", "packaged_app"] | 56 "extension_types": ["extension", "packaged_app"] |
| 57 }, | 57 }, |
| 58 "commands": { | 58 "commands": { |
| 59 "channel": "stable", | 59 "channel": "stable", |
| 60 "extension_types": "all", | 60 "extension_types": "all", |
| 61 "min_manifest_version": 2 | 61 "min_manifest_version": 2 |
| 62 }, | 62 }, |
| 63 "content_pack": { |
| 64 "channel": "dev", |
| 65 "extension_types": [ |
| 66 "content_pack" |
| 67 ] |
| 68 }, |
| 63 "content_security_policy": { | 69 "content_security_policy": { |
| 64 "channel": "stable", | 70 "channel": "stable", |
| 65 // Platform apps have a restricted content security policy that cannot be | 71 // Platform apps have a restricted content security policy that cannot be |
| 66 // overriden. | 72 // overriden. |
| 67 "extension_types": ["extension", "packaged_app"] | 73 "extension_types": ["extension", "packaged_app"] |
| 68 }, | 74 }, |
| 69 "content_scripts": { | 75 "content_scripts": { |
| 70 "channel": "stable", | 76 "channel": "stable", |
| 71 "extension_types": ["extension", "packaged_app"] | 77 "extension_types": ["extension", "packaged_app"] |
| 72 }, | 78 }, |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 "channel": "stable", | 233 "channel": "stable", |
| 228 "extension_types": "all" | 234 "extension_types": "all" |
| 229 }, | 235 }, |
| 230 "web_accessible_resources": { | 236 "web_accessible_resources": { |
| 231 "channel": "stable", | 237 "channel": "stable", |
| 232 "extension_types": [ | 238 "extension_types": [ |
| 233 "extension", "packaged_app", "hosted_app" | 239 "extension", "packaged_app", "hosted_app" |
| 234 ] | 240 ] |
| 235 } | 241 } |
| 236 } | 242 } |
| OLD | NEW |