Chromium Code Reviews| 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 16 matching lines...) Expand all Loading... | |
| 27 "extension_types": ["legacy_packaged_app", "hosted_app"] | 27 "extension_types": ["legacy_packaged_app", "hosted_app"] |
| 28 }, | 28 }, |
| 29 "app.launch": { | 29 "app.launch": { |
| 30 "channel": "stable", | 30 "channel": "stable", |
| 31 "extension_types": ["legacy_packaged_app", "hosted_app"] | 31 "extension_types": ["legacy_packaged_app", "hosted_app"] |
| 32 }, | 32 }, |
| 33 "author": { | 33 "author": { |
| 34 "channel": "stable", | 34 "channel": "stable", |
| 35 "extension_types": "all" | 35 "extension_types": "all" |
| 36 }, | 36 }, |
| 37 "automation": { | 37 "automation": [{ |
| 38 "channel": "dev", | 38 "channel": "dev", |
| 39 "extension_types": ["extension", "legacy_packaged_app"] | 39 "extension_types": ["extension", "legacy_packaged_app"] |
| 40 }, | 40 }, { |
| 41 "channel": "stable", | |
| 42 "extension_types": ["extension", "legacy_packaged_app"], | |
|
not at google - send to devlin
2014/11/26 21:22:17
Please file a bug for this whitelist and reference
| |
| 43 "whitelist": [ "2FCBCE08B34CCA1728A85F1EFBD9A34DD2558B2E" ] | |
| 44 }], | |
| 41 "browser_action": { | 45 "browser_action": { |
| 42 "channel": "stable", | 46 "channel": "stable", |
| 43 "extension_types": ["extension"] | 47 "extension_types": ["extension"] |
| 44 }, | 48 }, |
| 45 "chrome_settings_overrides": { | 49 "chrome_settings_overrides": { |
| 46 "channel": "stable", | 50 "channel": "stable", |
| 47 "extension_types": ["extension"], | 51 "extension_types": ["extension"], |
| 48 "platforms": ["win"] | 52 "platforms": ["win"] |
| 49 }, | 53 }, |
| 50 "chrome_ui_overrides": [{ | 54 "chrome_ui_overrides": [{ |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 279 }, | 283 }, |
| 280 "update_url": { | 284 "update_url": { |
| 281 "channel": "stable", | 285 "channel": "stable", |
| 282 "extension_types": "all" | 286 "extension_types": "all" |
| 283 }, | 287 }, |
| 284 "url_handlers": { | 288 "url_handlers": { |
| 285 "channel": "stable", | 289 "channel": "stable", |
| 286 "extension_types": ["platform_app"] | 290 "extension_types": ["platform_app"] |
| 287 } | 291 } |
| 288 } | 292 } |
| OLD | NEW |