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": [ |
| 156 { |
| 157 "channel": "dev", |
| 158 "extension_types": ["extension", "platform_app"] |
| 159 } |
| 160 ], |
155 "homepage_url": { | 161 "homepage_url": { |
156 "channel": "stable", | 162 "channel": "stable", |
157 "extension_types": ["extension", "legacy_packaged_app"] | 163 "extension_types": ["extension", "legacy_packaged_app"] |
158 }, | 164 }, |
159 "import": { | 165 "import": { |
160 "channel": "stable", | 166 "channel": "stable", |
161 "extension_types": "all" | 167 "extension_types": "all" |
162 }, | 168 }, |
163 "input_components": { | 169 "input_components": { |
164 "channel": "stable", | 170 "channel": "stable", |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 }, | 262 }, |
257 "update_url": { | 263 "update_url": { |
258 "channel": "stable", | 264 "channel": "stable", |
259 "extension_types": "all" | 265 "extension_types": "all" |
260 }, | 266 }, |
261 "url_handlers": { | 267 "url_handlers": { |
262 "channel": "stable", | 268 "channel": "stable", |
263 "extension_types": ["platform_app"] | 269 "extension_types": ["platform_app"] |
264 } | 270 } |
265 } | 271 } |
OLD | NEW |