OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // This features file defines manifest keys implemented under src/extensions. | 5 // This features file defines manifest keys implemented under src/extensions. |
6 // See extensions/common/features/* to understand this file, in particular | 6 // See extensions/common/features/* to understand this file, in particular |
7 // feature.h, simple_feature.h, and base_feature_provider.h. | 7 // feature.h, simple_feature.h, and base_feature_provider.h. |
8 | 8 |
9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: | 9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: |
10 // | 10 // |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
88 "extension_types": [ | 88 "extension_types": [ |
89 "platform_app" | 89 "platform_app" |
90 ] | 90 ] |
91 }, | 91 }, |
92 "offline_enabled": { | 92 "offline_enabled": { |
93 "channel": "stable", | 93 "channel": "stable", |
94 "extension_types": [ | 94 "extension_types": [ |
95 "extension", "legacy_packaged_app", "hosted_app", "platform_app" | 95 "extension", "legacy_packaged_app", "hosted_app", "platform_app" |
96 ] | 96 ] |
97 }, | 97 }, |
98 "options_ui": { | |
99 "channel": "trunk", | |
100 "extension_types": ["extension", "legacy_packaged_app"] | |
Devlin
2014/09/04 21:16:04
no hosted app? I would expect everything with an
ericzeng
2014/09/04 22:22:07
Ben had some reason for keeping legacy_packaged_ap
| |
101 }, | |
98 "sandbox": { | 102 "sandbox": { |
99 "channel": "stable", | 103 "channel": "stable", |
100 "extension_types": [ | 104 "extension_types": [ |
101 "extension", "platform_app", "legacy_packaged_app" | 105 "extension", "platform_app", "legacy_packaged_app" |
102 ], | 106 ], |
103 "min_manifest_version": 2 | 107 "min_manifest_version": 2 |
104 }, | 108 }, |
105 "sockets": { | 109 "sockets": { |
106 "channel": "stable", | 110 "channel": "stable", |
107 "extension_types": ["platform_app"] | 111 "extension_types": ["platform_app"] |
(...skipping 10 matching lines...) Expand all Loading... | |
118 "extension_types": ["platform_app"], | 122 "extension_types": ["platform_app"], |
119 "location": "component" | 123 "location": "component" |
120 } | 124 } |
121 ], | 125 ], |
122 "webview": { | 126 "webview": { |
123 "channel": "stable", | 127 "channel": "stable", |
124 "extension_types": ["platform_app"], | 128 "extension_types": ["platform_app"], |
125 "min_manifest_version": 2 | 129 "min_manifest_version": 2 |
126 } | 130 } |
127 } | 131 } |
OLD | NEW |