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: |
11 // | 11 // |
12 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \ | 12 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \ |
13 // sha1sum | tr '[:lower:]' '[:upper:]' | 13 // sha1sum | tr '[:lower:]' '[:upper:]' |
14 // 9A0417016F345C934A1A88F55CA17C05014EEEBA - | 14 // 9A0417016F345C934A1A88F55CA17C05014EEEBA - |
15 // | 15 // |
16 // Google employees: please update http://go/chrome-api-whitelist to map | 16 // Google employees: please update http://go/chrome-api-whitelist to map |
17 // hashes back to ids. | 17 // hashes back to ids. |
18 | 18 |
19 { | 19 { |
20 "accessibilityFeatures.modify": { | 20 "accessibilityFeatures.modify": { |
21 "channel": "dev", | 21 "channel": "dev", |
22 "extension_types": ["extension", "platform_app"] | 22 "extension_types": ["extension", "platform_app"] |
23 }, | 23 }, |
24 "accessibilityFeatures.read": { | 24 "accessibilityFeatures.read": { |
25 "channel": "dev", | 25 "channel": "dev", |
26 "extension_types": ["extension", "platform_app"] | 26 "extension_types": ["extension", "platform_app"] |
27 }, | 27 }, |
| 28 "accessibilityPrivate": { |
| 29 "channel": "stable", |
| 30 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
| 31 "whitelist": [ "2FCBCE08B34CCA1728A85F1EFBD9A34DD2558B2E" ] |
| 32 }, |
28 "activeTab": { | 33 "activeTab": { |
29 "channel": "stable", | 34 "channel": "stable", |
30 "extension_types": ["extension", "legacy_packaged_app"], | 35 "extension_types": ["extension", "legacy_packaged_app"], |
31 "min_manifest_version": 2 | 36 "min_manifest_version": 2 |
32 }, | 37 }, |
33 "activityLogPrivate": { | 38 "activityLogPrivate": { |
34 "channel": "stable", | 39 "channel": "stable", |
35 "extension_types": ["extension", "platform_app"], | 40 "extension_types": ["extension", "platform_app"], |
36 "whitelist": [ | 41 "whitelist": [ |
37 "EE17C698905F7F2E6DDC87C9C30F11E164C829F4", // Watchdog release | 42 "EE17C698905F7F2E6DDC87C9C30F11E164C829F4", // Watchdog release |
(...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
967 // Only allowed for whitelisted extensions until all the caveats are | 972 // Only allowed for whitelisted extensions until all the caveats are |
968 // addressed. Tracked in crbug/285151. | 973 // addressed. Tracked in crbug/285151. |
969 "channel": "stable", | 974 "channel": "stable", |
970 "extension_types": ["extension"], | 975 "extension_types": ["extension"], |
971 "location": "component", | 976 "location": "component", |
972 "whitelist": [ | 977 "whitelist": [ |
973 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 978 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
974 ] | 979 ] |
975 }] | 980 }] |
976 } | 981 } |
OLD | NEW |