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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
112 "no_doc": true | 112 "no_doc": true |
113 }, | 113 }, |
114 "current_locale": { | 114 "current_locale": { |
115 "channel": "stable", | 115 "channel": "stable", |
116 "extension_types": "all" | 116 "extension_types": "all" |
117 }, | 117 }, |
118 "default_locale": { | 118 "default_locale": { |
119 "channel": "stable", | 119 "channel": "stable", |
120 "extension_types": "all" | 120 "extension_types": "all" |
121 }, | 121 }, |
122 "description": { | |
James Cook
2014/09/11 23:32:30
Handled by the core manifest parser in src/extensi
| |
123 "channel": "stable", | |
124 "extension_types": "all" | |
125 }, | |
126 "devtools_page": { | 122 "devtools_page": { |
127 "channel": "stable", | 123 "channel": "stable", |
128 "extension_types": ["extension", "legacy_packaged_app"] | 124 "extension_types": ["extension", "legacy_packaged_app"] |
129 }, | 125 }, |
130 "display_in_launcher": [ | 126 "display_in_launcher": [ |
131 { | 127 { |
132 "channel": "stable", | 128 "channel": "stable", |
133 "extension_types": ["legacy_packaged_app", "platform_app", "hosted_app"], | 129 "extension_types": ["legacy_packaged_app", "platform_app", "hosted_app"], |
134 "location": "component" | 130 "location": "component" |
135 }, | 131 }, |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
403 }, | 399 }, |
404 "url_handlers": { | 400 "url_handlers": { |
405 "channel": "stable", | 401 "channel": "stable", |
406 "extension_types": ["platform_app"] | 402 "extension_types": ["platform_app"] |
407 }, | 403 }, |
408 "version": { | 404 "version": { |
409 "channel": "stable", | 405 "channel": "stable", |
410 "extension_types": "all" | 406 "extension_types": "all" |
411 } | 407 } |
412 } | 408 } |
OLD | NEW |