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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 "channel": "stable", | 77 "channel": "stable", |
78 "extension_types": ["extension", "legacy_packaged_app"] | 78 "extension_types": ["extension", "legacy_packaged_app"] |
79 }, | 79 }, |
80 "converted_from_user_script": { | 80 "converted_from_user_script": { |
81 "channel": "stable", | 81 "channel": "stable", |
82 "extension_types": [ | 82 "extension_types": [ |
83 "extension", "legacy_packaged_app", "hosted_app" | 83 "extension", "legacy_packaged_app", "hosted_app" |
84 ], | 84 ], |
85 "no_doc": true | 85 "no_doc": true |
86 }, | 86 }, |
87 "current_locale": { | |
88 "channel": "stable", | |
89 "extension_types": "all" | |
90 }, | |
91 "default_locale": { | |
92 "channel": "stable", | |
93 "extension_types": "all" | |
94 }, | |
95 "devtools_page": { | 87 "devtools_page": { |
96 "channel": "stable", | 88 "channel": "stable", |
97 "extension_types": ["extension", "legacy_packaged_app"] | 89 "extension_types": ["extension", "legacy_packaged_app"] |
98 }, | 90 }, |
99 "display_in_launcher": [ | 91 "display_in_launcher": [ |
100 { | 92 { |
101 "channel": "stable", | 93 "channel": "stable", |
102 "extension_types": ["legacy_packaged_app", "platform_app", "hosted_app"], | 94 "extension_types": ["legacy_packaged_app", "platform_app", "hosted_app"], |
103 "location": "component" | 95 "location": "component" |
104 }, | 96 }, |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 }, | 279 }, |
288 "update_url": { | 280 "update_url": { |
289 "channel": "stable", | 281 "channel": "stable", |
290 "extension_types": "all" | 282 "extension_types": "all" |
291 }, | 283 }, |
292 "url_handlers": { | 284 "url_handlers": { |
293 "channel": "stable", | 285 "channel": "stable", |
294 "extension_types": ["platform_app"] | 286 "extension_types": ["platform_app"] |
295 } | 287 } |
296 } | 288 } |
OLD | NEW |