| 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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 "declarativeWebRequest": [ | 346 "declarativeWebRequest": [ |
| 347 { | 347 { |
| 348 "channel": "beta", | 348 "channel": "beta", |
| 349 "extension_types": ["extension", "legacy_packaged_app"] | 349 "extension_types": ["extension", "legacy_packaged_app"] |
| 350 } | 350 } |
| 351 ], | 351 ], |
| 352 "desktopCapture": { | 352 "desktopCapture": { |
| 353 "channel": "stable", | 353 "channel": "stable", |
| 354 "extension_types": ["extension", "platform_app"] | 354 "extension_types": ["extension", "platform_app"] |
| 355 }, | 355 }, |
| 356 "documentScan": { |
| 357 "channel": "dev", |
| 358 "extension_types": ["extension", "platform_app"] |
| 359 }, |
| 356 "downloads": { | 360 "downloads": { |
| 357 "channel": "stable", | 361 "channel": "stable", |
| 358 "extension_types": ["extension"] | 362 "extension_types": ["extension"] |
| 359 }, | 363 }, |
| 360 "downloads.open": { | 364 "downloads.open": { |
| 361 "channel": "stable", | 365 "channel": "stable", |
| 362 "extension_types": ["extension"] | 366 "extension_types": ["extension"] |
| 363 }, | 367 }, |
| 364 "downloads.shelf": { | 368 "downloads.shelf": { |
| 365 "channel": "stable", | 369 "channel": "stable", |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1026 // Only allowed for whitelisted extensions until all the caveats are | 1030 // Only allowed for whitelisted extensions until all the caveats are |
| 1027 // addressed. Tracked in crbug/285151. | 1031 // addressed. Tracked in crbug/285151. |
| 1028 "channel": "stable", | 1032 "channel": "stable", |
| 1029 "extension_types": ["extension"], | 1033 "extension_types": ["extension"], |
| 1030 "location": "component", | 1034 "location": "component", |
| 1031 "whitelist": [ | 1035 "whitelist": [ |
| 1032 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 1036 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
| 1033 ] | 1037 ] |
| 1034 }] | 1038 }] |
| 1035 } | 1039 } |
| OLD | NEW |