| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "display_in_launcher": [ | 99 "display_in_launcher": [ |
| 100 { | 100 { |
| 101 "channel": "stable", | 101 "channel": "stable", |
| 102 "extension_types": ["legacy_packaged_app", "platform_app", "hosted_app"], | 102 "extension_types": ["legacy_packaged_app", "platform_app", "hosted_app"], |
| 103 "location": "component" | 103 "location": "component" |
| 104 }, | 104 }, |
| 105 { | 105 { |
| 106 "channel": "stable", | 106 "channel": "stable", |
| 107 "extension_types": ["legacy_packaged_app", "platform_app"], | 107 "extension_types": ["legacy_packaged_app", "platform_app"], |
| 108 "whitelist": [ | 108 "whitelist": [ |
| 109 "nmmhkkegccagdldgiimedpiccmgmieda" | 109 "nmmhkkegccagdldgiimedpiccmgmieda", |
| 110 "oedeeodfidgoollimchfdnbmhcpnklnd" // ZIP unpacker. |
| 110 ] | 111 ] |
| 111 } | 112 } |
| 112 ], | 113 ], |
| 113 "display_in_new_tab_page": [ | 114 "display_in_new_tab_page": [ |
| 114 { | 115 { |
| 115 "channel": "stable", | 116 "channel": "stable", |
| 116 "extension_types": ["legacy_packaged_app", "platform_app", "hosted_app"], | 117 "extension_types": ["legacy_packaged_app", "platform_app", "hosted_app"], |
| 117 "location": "component" | 118 "location": "component" |
| 118 }, | 119 }, |
| 119 { | 120 { |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 }, | 287 }, |
| 287 "update_url": { | 288 "update_url": { |
| 288 "channel": "stable", | 289 "channel": "stable", |
| 289 "extension_types": "all" | 290 "extension_types": "all" |
| 290 }, | 291 }, |
| 291 "url_handlers": { | 292 "url_handlers": { |
| 292 "channel": "stable", | 293 "channel": "stable", |
| 293 "extension_types": ["platform_app"] | 294 "extension_types": ["platform_app"] |
| 294 } | 295 } |
| 295 } | 296 } |
| OLD | NEW |