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 { | 9 { |
10 "app": { | 10 "app": { |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 { | 162 { |
163 "channel": "stable", | 163 "channel": "stable", |
164 "extension_types": ["extension", "legacy_packaged_app"] | 164 "extension_types": ["extension", "legacy_packaged_app"] |
165 }, | 165 }, |
166 { | 166 { |
167 "channel": "stable", | 167 "channel": "stable", |
168 "extension_types": ["platform_app"], | 168 "extension_types": ["platform_app"], |
169 "location": "component" | 169 "location": "component" |
170 } | 170 } |
171 ], | 171 ], |
172 "file_handlers": { | 172 "file_handlers": [ |
| 173 { |
173 "channel": "stable", | 174 "channel": "stable", |
174 "extension_types": ["platform_app"] | 175 "extension_types": ["platform_app"] |
175 }, | 176 }, { |
| 177 "channel": "stable", |
| 178 "extension_types": [ "extension"], |
| 179 "whitelist": [ |
| 180 "gbkeegbaiigmenfmjfclcdgdpimamgkj", // QuickOffice |
| 181 "ionpfmkccalenbmnddpbmocokhaknphg", // QuickOffice Dev |
| 182 "bpmcpldpdmajfigpchkicefoigmkfalc" // Quickoffice component extension |
| 183 ] |
| 184 }], |
176 "homepage_url": { | 185 "homepage_url": { |
177 "channel": "stable", | 186 "channel": "stable", |
178 "extension_types": ["extension", "legacy_packaged_app"] | 187 "extension_types": ["extension", "legacy_packaged_app"] |
179 }, | 188 }, |
180 "icons": { | 189 "icons": { |
181 "channel": "stable", | 190 "channel": "stable", |
182 "extension_types": "all" | 191 "extension_types": "all" |
183 }, | 192 }, |
184 "import": { | 193 "import": { |
185 "channel": "stable", | 194 "channel": "stable", |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 }, | 343 }, |
335 "url_handlers": { | 344 "url_handlers": { |
336 "channel": "stable", | 345 "channel": "stable", |
337 "extension_types": ["platform_app"] | 346 "extension_types": ["platform_app"] |
338 }, | 347 }, |
339 "version": { | 348 "version": { |
340 "channel": "stable", | 349 "channel": "stable", |
341 "extension_types": "all" | 350 "extension_types": "all" |
342 } | 351 } |
343 } | 352 } |
OLD | NEW |