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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
217 "extension_types": "all" | 217 "extension_types": "all" |
218 }, | 218 }, |
219 "input_components": { | 219 "input_components": { |
220 "channel": "stable", | 220 "channel": "stable", |
221 "extension_types": ["extension", "legacy_packaged_app"] | 221 "extension_types": ["extension", "legacy_packaged_app"] |
222 }, | 222 }, |
223 "key": { | 223 "key": { |
224 "channel": "stable", | 224 "channel": "stable", |
225 "extension_types": "all" | 225 "extension_types": "all" |
226 }, | 226 }, |
227 "launcher_page": { | |
228 "channel": "stable", | |
229 "min_manifest_version": 2, | |
benwells
2014/08/15 08:30:21
Do you need to specify this?
Matt Giuca
2014/08/15 08:35:40
Well, no, but I assumed all new features should re
| |
230 "extension_types": ["platform_app"], | |
231 "whitelist": [ | |
232 "07BD6A765FFC289FF755D7CAB2893A40EC337FEC", // http://crbug.com/404000 | |
233 "896B85CC7E913E11C34892C1425A093C0701D386", // http://crbug.com/404000 | |
234 "11A01C82EF355E674E4F9728A801F5C3CB40D83F" // http://crbug.com/404000 | |
235 ] | |
236 }, | |
237 "launcher_page.page": { | |
benwells
2014/08/15 08:30:21
You shouldn't need this, it should be inherited fr
Matt Giuca
2014/08/15 08:35:40
Done.
| |
238 "channel": "stable", | |
239 "min_manifest_version": 2, | |
240 "extension_types": ["platform_app"] | |
241 }, | |
242 "launcher_page.icons": { | |
243 "channel": "stable", | |
244 "min_manifest_version": 2, | |
245 "extension_types": ["platform_app"] | |
246 }, | |
227 "manifest_version": { | 247 "manifest_version": { |
228 "channel": "stable", | 248 "channel": "stable", |
229 "extension_types": "all" | 249 "extension_types": "all" |
230 }, | 250 }, |
231 "mime_types": { | 251 "mime_types": { |
232 "channel": "stable", | 252 "channel": "stable", |
233 "extension_types": [ "extension", "legacy_packaged_app", "platform_app" ], | 253 "extension_types": [ "extension", "legacy_packaged_app", "platform_app" ], |
234 "whitelist": [ | 254 "whitelist": [ |
235 "oickdpebdnfbgkcaoklfcdhjniefkcji", // browser_tests | 255 "oickdpebdnfbgkcaoklfcdhjniefkcji", // browser_tests |
236 "gbkeegbaiigmenfmjfclcdgdpimamgkj", // QuickOffice | 256 "gbkeegbaiigmenfmjfclcdgdpimamgkj", // QuickOffice |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
393 }, | 413 }, |
394 "url_handlers": { | 414 "url_handlers": { |
395 "channel": "stable", | 415 "channel": "stable", |
396 "extension_types": ["platform_app"] | 416 "extension_types": ["platform_app"] |
397 }, | 417 }, |
398 "version": { | 418 "version": { |
399 "channel": "stable", | 419 "channel": "stable", |
400 "extension_types": "all" | 420 "extension_types": "all" |
401 } | 421 } |
402 } | 422 } |
OLD | NEW |