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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 "channel": "stable", | 164 "channel": "stable", |
165 "extension_types": "all" | 165 "extension_types": "all" |
166 }, | 166 }, |
167 "offline_enabled": { | 167 "offline_enabled": { |
168 "channel": "stable", | 168 "channel": "stable", |
169 "extension_types": [ | 169 "extension_types": [ |
170 "extension", "legacy_packaged_app", "hosted_app", "platform_app" | 170 "extension", "legacy_packaged_app", "hosted_app", "platform_app" |
171 ] | 171 ] |
172 }, | 172 }, |
173 "options_ui": { | 173 "options_ui": { |
174 "channel": "trunk", | 174 "channel": "stable", |
175 "extension_types": ["extension", "legacy_packaged_app"] | 175 "extension_types": ["extension", "legacy_packaged_app"] |
176 }, | 176 }, |
177 "sandbox": { | 177 "sandbox": { |
178 "channel": "stable", | 178 "channel": "stable", |
179 "extension_types": [ | 179 "extension_types": [ |
180 "extension", "platform_app", "legacy_packaged_app" | 180 "extension", "platform_app", "legacy_packaged_app" |
181 ], | 181 ], |
182 "min_manifest_version": 2 | 182 "min_manifest_version": 2 |
183 }, | 183 }, |
184 "sockets": { | 184 "sockets": { |
(...skipping 16 matching lines...) Expand all Loading... |
201 "extension_types": ["platform_app"], | 201 "extension_types": ["platform_app"], |
202 "location": "component" | 202 "location": "component" |
203 } | 203 } |
204 ], | 204 ], |
205 "webview": { | 205 "webview": { |
206 "channel": "stable", | 206 "channel": "stable", |
207 "extension_types": ["platform_app"], | 207 "extension_types": ["platform_app"], |
208 "min_manifest_version": 2 | 208 "min_manifest_version": 2 |
209 } | 209 } |
210 } | 210 } |
OLD | NEW |