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 permissions for extension APIs implemented | 5 // This features file defines permissions for extension APIs implemented |
6 // under src/chrome. | 6 // under src/chrome. |
7 // See extensions/common/features/* to understand this file, in particular | 7 // See extensions/common/features/* to understand this file, in particular |
8 // feature.h, simple_feature.h, and base_feature_provider.h. | 8 // feature.h, simple_feature.h, and base_feature_provider.h. |
9 | 9 |
10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: | 10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 "channel": "stable", | 44 "channel": "stable", |
45 "extension_types": ["extension", "platform_app"], | 45 "extension_types": ["extension", "platform_app"], |
46 "whitelist": [ | 46 "whitelist": [ |
47 "EE17C698905F7F2E6DDC87C9C30F11E164C829F4", // Watchdog release | 47 "EE17C698905F7F2E6DDC87C9C30F11E164C829F4", // Watchdog release |
48 "90113DA9516526D24DAF156C629CC41C049E8882", // Watchdog testing | 48 "90113DA9516526D24DAF156C629CC41C049E8882", // Watchdog testing |
49 "A9EFD71948A480C87D3B7C758FD938215F445F00", // Obsolete | 49 "A9EFD71948A480C87D3B7C758FD938215F445F00", // Obsolete |
50 "AE27D69DBE571F4B1694F05C89B710C646792231", // Published ADT. | 50 "AE27D69DBE571F4B1694F05C89B710C646792231", // Published ADT. |
51 "5107DE9024C329EEA9C9A72D94C16723790C6422" // Apps Developer Tool Dev. | 51 "5107DE9024C329EEA9C9A72D94C16723790C6422" // Apps Developer Tool Dev. |
52 ] | 52 ] |
53 }, | 53 }, |
| 54 "appview": { |
| 55 "channel": "dev", |
| 56 "extension_types": ["platform_app"] |
| 57 }, |
54 "alarms": { | 58 "alarms": { |
55 "channel": "stable", | 59 "channel": "stable", |
56 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 60 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
57 "min_manifest_version": 2 | 61 "min_manifest_version": 2 |
58 }, | 62 }, |
59 "app.window.alwaysOnTop": { | 63 "app.window.alwaysOnTop": { |
60 "channel": "stable", | 64 "channel": "stable", |
61 "extension_types": ["platform_app"] | 65 "extension_types": ["platform_app"] |
62 }, | 66 }, |
63 "app.window.fullscreen": { | 67 "app.window.fullscreen": { |
(...skipping 1018 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1082 // Only allowed for whitelisted extensions until all the caveats are | 1086 // Only allowed for whitelisted extensions until all the caveats are |
1083 // addressed. Tracked in crbug/285151. | 1087 // addressed. Tracked in crbug/285151. |
1084 "channel": "stable", | 1088 "channel": "stable", |
1085 "extension_types": ["extension"], | 1089 "extension_types": ["extension"], |
1086 "location": "component", | 1090 "location": "component", |
1087 "whitelist": [ | 1091 "whitelist": [ |
1088 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 1092 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
1089 ] | 1093 ] |
1090 }] | 1094 }] |
1091 } | 1095 } |
OLD | NEW |