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 // |
11 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \ | 11 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \ |
12 // sha1sum | tr '[:lower:]' '[:upper:]' | 12 // sha1sum | tr '[:lower:]' '[:upper:]' |
13 // 9A0417016F345C934A1A88F55CA17C05014EEEBA - | 13 // 9A0417016F345C934A1A88F55CA17C05014EEEBA - |
14 // | 14 // |
15 // Google employees: please update http://go/chrome-api-whitelist to map | 15 // Google employees: please update http://go/chrome-api-whitelist to map |
16 // hashes back to ids. | 16 // hashes back to ids. |
17 | 17 |
18 { | 18 { |
19 "about_page": { | 19 "about_page": { |
20 "channel": "stable", | 20 "channel": "stable", |
21 "extension_types": ["shared_module"] | 21 "extension_types": ["shared_module"] |
22 }, | 22 }, |
23 "app.icon_color": { | 23 "app.icon_color": { |
24 "channel": "stable", | 24 "channel": "stable", |
25 "extension_types": ["hosted_app"] | 25 "extension_types": ["hosted_app"] |
26 }, | 26 }, |
| 27 "app.linked_icons": { |
| 28 "channel": "dev", |
| 29 "extension_types": ["hosted_app"] |
| 30 }, |
27 "app.isolation": { | 31 "app.isolation": { |
28 "channel": "stable", | 32 "channel": "stable", |
29 // Platform apps always have isolated storage, thus they cannot specify it | 33 // Platform apps always have isolated storage, thus they cannot specify it |
30 // via the manifest. | 34 // via the manifest. |
31 "extension_types": ["legacy_packaged_app", "hosted_app"] | 35 "extension_types": ["legacy_packaged_app", "hosted_app"] |
32 }, | 36 }, |
33 "app.launch": { | 37 "app.launch": { |
34 "channel": "stable", | 38 "channel": "stable", |
35 "extension_types": ["legacy_packaged_app", "hosted_app"] | 39 "extension_types": ["legacy_packaged_app", "hosted_app"] |
36 }, | 40 }, |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 }, | 256 }, |
253 "update_url": { | 257 "update_url": { |
254 "channel": "stable", | 258 "channel": "stable", |
255 "extension_types": "all" | 259 "extension_types": "all" |
256 }, | 260 }, |
257 "url_handlers": { | 261 "url_handlers": { |
258 "channel": "stable", | 262 "channel": "stable", |
259 "extension_types": ["platform_app"] | 263 "extension_types": ["platform_app"] |
260 } | 264 } |
261 } | 265 } |
OLD | NEW |