| 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 chrome/common/extensions/api/_features.md to understand this file, as |
| 7 // feature.h, simple_feature.h, and base_feature_provider.h. | 7 // well as feature.h, simple_feature.h, and base_feature_provider.h. |
| 8 | |
| 9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: | |
| 10 // | |
| 11 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \ | |
| 12 // sha1sum | tr '[:lower:]' '[:upper:]' | |
| 13 // 9A0417016F345C934A1A88F55CA17C05014EEEBA - | |
| 14 // | |
| 15 // Google employees: please update http://go/chrome-api-whitelist to map | |
| 16 // hashes back to ids. | |
| 17 | 8 |
| 18 { | 9 { |
| 19 "about_page": { | 10 "about_page": { |
| 20 "channel": "stable", | 11 "channel": "stable", |
| 21 "extension_types": ["shared_module"] | 12 "extension_types": ["shared_module"] |
| 22 }, | 13 }, |
| 23 "app.icon_color": { | 14 "app.icon_color": { |
| 24 "channel": "stable", | 15 "channel": "stable", |
| 25 "extension_types": ["hosted_app"] | 16 "extension_types": ["hosted_app"] |
| 26 }, | 17 }, |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 }, | 257 }, |
| 267 "update_url": { | 258 "update_url": { |
| 268 "channel": "stable", | 259 "channel": "stable", |
| 269 "extension_types": "all" | 260 "extension_types": "all" |
| 270 }, | 261 }, |
| 271 "url_handlers": { | 262 "url_handlers": { |
| 272 "channel": "stable", | 263 "channel": "stable", |
| 273 "extension_types": ["platform_app"] | 264 "extension_types": ["platform_app"] |
| 274 } | 265 } |
| 275 } | 266 } |
| OLD | NEW |