| 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 }, | 292 }, |
| 293 "optional_permissions": { | 293 "optional_permissions": { |
| 294 "channel": "stable", | 294 "channel": "stable", |
| 295 "extension_types": [ | 295 "extension_types": [ |
| 296 "extension", "legacy_packaged_app", "hosted_app", "platform_app" | 296 "extension", "legacy_packaged_app", "hosted_app", "platform_app" |
| 297 ] | 297 ] |
| 298 }, | 298 }, |
| 299 "options_page": { | 299 "options_page": { |
| 300 "channel": "stable", | 300 "channel": "stable", |
| 301 "extension_types": [ | 301 "extension_types": [ |
| 302 "extension", "legacy_packaged_app", "hosted_app" | 302 "extension", "legacy_packaged_app", "hosted_app", "shared_module" |
| 303 ] | 303 ] |
| 304 }, | 304 }, |
| 305 "page_action": { | 305 "page_action": { |
| 306 "channel": "stable", | 306 "channel": "stable", |
| 307 "extension_types": ["extension"] | 307 "extension_types": ["extension"] |
| 308 }, | 308 }, |
| 309 "page_actions": { | 309 "page_actions": { |
| 310 "channel": "stable", | 310 "channel": "stable", |
| 311 "extension_types": ["extension"], | 311 "extension_types": ["extension"], |
| 312 "max_manifest_version": 1 | 312 "max_manifest_version": 1 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 }, | 385 }, |
| 386 "url_handlers": { | 386 "url_handlers": { |
| 387 "channel": "stable", | 387 "channel": "stable", |
| 388 "extension_types": ["platform_app"] | 388 "extension_types": ["platform_app"] |
| 389 }, | 389 }, |
| 390 "version": { | 390 "version": { |
| 391 "channel": "stable", | 391 "channel": "stable", |
| 392 "extension_types": "all" | 392 "extension_types": "all" |
| 393 } | 393 } |
| 394 } | 394 } |
| OLD | NEW |