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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 "plugins": { | 226 "plugins": { |
227 "channel": "stable", | 227 "channel": "stable", |
228 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"] | 228 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"] |
229 }, | 229 }, |
230 "requirements": { | 230 "requirements": { |
231 "channel": "stable", | 231 "channel": "stable", |
232 "extension_types": [ | 232 "extension_types": [ |
233 "extension", "legacy_packaged_app", "hosted_app", "platform_app" | 233 "extension", "legacy_packaged_app", "hosted_app", "platform_app" |
234 ] | 234 ] |
235 }, | 235 }, |
236 "script_badge": { | |
237 "channel": "trunk", | |
238 "extension_types": ["extension"] | |
239 }, | |
240 "short_name": { | 236 "short_name": { |
241 "channel": "stable", | 237 "channel": "stable", |
242 "extension_types": "all" | 238 "extension_types": "all" |
243 }, | 239 }, |
244 "signature": { | 240 "signature": { |
245 "channel": "stable", | 241 "channel": "stable", |
246 "extension_types": "all" | 242 "extension_types": "all" |
247 }, | 243 }, |
248 "spellcheck": { | 244 "spellcheck": { |
249 "channel": "dev", | 245 "channel": "dev", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 }, | 279 }, |
284 "update_url": { | 280 "update_url": { |
285 "channel": "stable", | 281 "channel": "stable", |
286 "extension_types": "all" | 282 "extension_types": "all" |
287 }, | 283 }, |
288 "url_handlers": { | 284 "url_handlers": { |
289 "channel": "stable", | 285 "channel": "stable", |
290 "extension_types": ["platform_app"] | 286 "extension_types": ["platform_app"] |
291 } | 287 } |
292 } | 288 } |
OLD | NEW |