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 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 ] | 322 ] |
323 }, | 323 }, |
324 "devtools": { | 324 "devtools": { |
325 "channel": "stable", | 325 "channel": "stable", |
326 "extension_types": ["extension", "legacy_packaged_app"] | 326 "extension_types": ["extension", "legacy_packaged_app"] |
327 }, | 327 }, |
328 "declarativeContent": { | 328 "declarativeContent": { |
329 "channel": "stable", | 329 "channel": "stable", |
330 "extension_types": ["extension"] | 330 "extension_types": ["extension"] |
331 }, | 331 }, |
332 "declarativeWebRequest": [ | |
333 { | |
334 "channel": "beta", | |
335 "extension_types": ["extension", "legacy_packaged_app"] | |
336 } | |
337 ], | |
338 "desktopCapture": { | 332 "desktopCapture": { |
339 "channel": "stable", | 333 "channel": "stable", |
340 "extension_types": ["extension", "platform_app"] | 334 "extension_types": ["extension", "platform_app"] |
341 }, | 335 }, |
342 "downloads": { | 336 "downloads": { |
343 "channel": "stable", | 337 "channel": "stable", |
344 "extension_types": ["extension"] | 338 "extension_types": ["extension"] |
345 }, | 339 }, |
346 "downloads.open": { | 340 "downloads.open": { |
347 "channel": "stable", | 341 "channel": "stable", |
(...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1055 ] | 1049 ] |
1056 }, | 1050 }, |
1057 "webstorePrivate": { | 1051 "webstorePrivate": { |
1058 "channel": "stable", | 1052 "channel": "stable", |
1059 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], | 1053 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], |
1060 "whitelist": [ | 1054 "whitelist": [ |
1061 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store | 1055 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store |
1062 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4", // Enterprise Web Store | 1056 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4", // Enterprise Web Store |
1063 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype) | 1057 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype) |
1064 ] | 1058 ] |
1065 }, | |
1066 "webRequest": { | |
1067 "channel": "stable", | |
1068 "extension_types": ["extension", "legacy_packaged_app"] | |
1069 }, | |
1070 "webRequestBlocking": { | |
1071 "channel": "stable", | |
1072 "extension_types": ["extension", "legacy_packaged_app"] | |
1073 } | 1059 } |
1074 } | 1060 } |
OLD | NEW |