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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 "chrome_settings_overrides": [{ | 56 "chrome_settings_overrides": [{ |
57 "channel": "stable", | 57 "channel": "stable", |
58 "extension_types": ["extension"], | 58 "extension_types": ["extension"], |
59 "platforms": ["win"] | 59 "platforms": ["win"] |
60 }, { // TODO(wittman): remove this section for M37. | 60 }, { // TODO(wittman): remove this section for M37. |
61 "channel": "stable", | 61 "channel": "stable", |
62 "extension_types": ["extension"], | 62 "extension_types": ["extension"], |
63 "whitelist": [ | 63 "whitelist": [ |
64 "CB2E4E7174A398FCB3AFA6840500C2E1D22DA7B2", // Bookmark Manager | 64 "CB2E4E7174A398FCB3AFA6840500C2E1D22DA7B2", // Bookmark Manager |
65 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 | 65 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 |
66 "D57DE394F36DC1C3220E7604C575D29C51A6C495" // http://crbug.com/319444 | 66 "D57DE394F36DC1C3220E7604C575D29C51A6C495", // http://crbug.com/319444 |
| 67 "3F65507A3B39259B38C8173C6FFA3D12DF64CCE9" // http://crbug.com/371562 |
67 ] | 68 ] |
68 }], | 69 }], |
69 "chrome_ui_overrides": [{ | 70 "chrome_ui_overrides": [{ |
70 "channel": "dev", | 71 "channel": "dev", |
71 "extension_types": ["extension"] | 72 "extension_types": ["extension"] |
72 }, { | 73 }, { |
73 "channel": "stable", | 74 "channel": "stable", |
74 "extension_types": ["extension"], | 75 "extension_types": ["extension"], |
75 "whitelist": [ | 76 "whitelist": [ |
76 "CB2E4E7174A398FCB3AFA6840500C2E1D22DA7B2", // Bookmark Manager | 77 "CB2E4E7174A398FCB3AFA6840500C2E1D22DA7B2", // Bookmark Manager |
77 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 | 78 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 |
78 "D57DE394F36DC1C3220E7604C575D29C51A6C495" // http://crbug.com/319444 | 79 "D57DE394F36DC1C3220E7604C575D29C51A6C495", // http://crbug.com/319444 |
| 80 "3F65507A3B39259B38C8173C6FFA3D12DF64CCE9" // http://crbug.com/371562 |
79 ] | 81 ] |
80 }], | 82 }], |
81 "chrome_url_overrides": { | 83 "chrome_url_overrides": { |
82 "channel": "stable", | 84 "channel": "stable", |
83 "extension_types": ["extension", "legacy_packaged_app"] | 85 "extension_types": ["extension", "legacy_packaged_app"] |
84 }, | 86 }, |
85 "commands": { | 87 "commands": { |
86 "channel": "stable", | 88 "channel": "stable", |
87 "extension_types": ["extension", "platform_app"], | 89 "extension_types": ["extension", "platform_app"], |
88 "min_manifest_version": 2 | 90 "min_manifest_version": 2 |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 }, | 385 }, |
384 "url_handlers": { | 386 "url_handlers": { |
385 "channel": "stable", | 387 "channel": "stable", |
386 "extension_types": ["platform_app"] | 388 "extension_types": ["platform_app"] |
387 }, | 389 }, |
388 "version": { | 390 "version": { |
389 "channel": "stable", | 391 "channel": "stable", |
390 "extension_types": "all" | 392 "extension_types": "all" |
391 } | 393 } |
392 } | 394 } |
OLD | NEW |