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 // This features file defines manifest keys implemented under src/chrome. | 5 // This features file defines manifest keys implemented under src/chrome. |
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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 { | 145 { |
146 "channel": "stable", | 146 "channel": "stable", |
147 "extension_types": ["extension", "legacy_packaged_app"] | 147 "extension_types": ["extension", "legacy_packaged_app"] |
148 }, | 148 }, |
149 { | 149 { |
150 "channel": "stable", | 150 "channel": "stable", |
151 "extension_types": ["platform_app"], | 151 "extension_types": ["platform_app"], |
152 "location": "component" | 152 "location": "component" |
153 } | 153 } |
154 ], | 154 ], |
155 "file_system_provider": [ | 155 "file_system_provider_capabilities": { |
156 { | 156 "channel": "dev", |
157 "channel": "dev", | 157 "extension_types": ["extension", "platform_app"] |
158 "extension_types": ["extension", "platform_app"] | 158 }, |
159 } | |
160 ], | |
161 "homepage_url": { | 159 "homepage_url": { |
162 "channel": "stable", | 160 "channel": "stable", |
163 "extension_types": ["extension", "legacy_packaged_app"] | 161 "extension_types": ["extension", "legacy_packaged_app"] |
164 }, | 162 }, |
165 "import": { | 163 "import": { |
166 "channel": "stable", | 164 "channel": "stable", |
167 "extension_types": "all" | 165 "extension_types": "all" |
168 }, | 166 }, |
169 "input_components": { | 167 "input_components": { |
170 "channel": "stable", | 168 "channel": "stable", |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 }, | 260 }, |
263 "update_url": { | 261 "update_url": { |
264 "channel": "stable", | 262 "channel": "stable", |
265 "extension_types": "all" | 263 "extension_types": "all" |
266 }, | 264 }, |
267 "url_handlers": { | 265 "url_handlers": { |
268 "channel": "stable", | 266 "channel": "stable", |
269 "extension_types": ["platform_app"] | 267 "extension_types": ["platform_app"] |
270 } | 268 } |
271 } | 269 } |
OLD | NEW |