OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/extensions. | 6 // under src/extensions. |
7 | 7 |
8 // See extensions/common/features/* to understand this file, in particular | 8 // See extensions/common/features/* to understand this file, in particular |
9 // feature.h, simple_feature.h, and base_feature_provider.h. | 9 // feature.h, simple_feature.h, and base_feature_provider.h. |
10 | 10 |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 { | 174 { |
175 "channel": "stable", | 175 "channel": "stable", |
176 "extension_types": ["extension", "platform_app"], | 176 "extension_types": ["extension", "platform_app"], |
177 "whitelist": [ | 177 "whitelist": [ |
178 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development | 178 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development |
179 "C7DA3A55C2355F994D3FDDAD120B426A0DF63843", // CCD Testing | 179 "C7DA3A55C2355F994D3FDDAD120B426A0DF63843", // CCD Testing |
180 "75E3CFFFC530582C583E4690EF97C70B9C8423B7" // CCD Release | 180 "75E3CFFFC530582C583E4690EF97C70B9C8423B7" // CCD Release |
181 ] | 181 ] |
182 } | 182 } |
183 ], | 183 ], |
| 184 "documentScan": { |
| 185 "channel": "dev", |
| 186 "extension_types": ["extension", "platform_app"] |
| 187 }, |
184 "extensionview": { | 188 "extensionview": { |
185 "channel": "dev", | 189 "channel": "dev", |
186 "extension_types": ["platform_app"] | 190 "extension_types": ["platform_app"] |
187 }, | 191 }, |
188 "externally_connectable.all_urls": { | 192 "externally_connectable.all_urls": { |
189 "channel": "stable", | 193 "channel": "stable", |
190 "extension_types": [ | 194 "extension_types": [ |
191 "extension", "hosted_app", "legacy_packaged_app", "platform_app" | 195 "extension", "hosted_app", "legacy_packaged_app", "platform_app" |
192 ], | 196 ], |
193 "whitelist": [ | 197 "whitelist": [ |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 }, | 426 }, |
423 "webRequest": { | 427 "webRequest": { |
424 "channel": "stable", | 428 "channel": "stable", |
425 "extension_types": ["extension", "legacy_packaged_app"] | 429 "extension_types": ["extension", "legacy_packaged_app"] |
426 }, | 430 }, |
427 "webRequestBlocking": { | 431 "webRequestBlocking": { |
428 "channel": "stable", | 432 "channel": "stable", |
429 "extension_types": ["extension", "legacy_packaged_app"] | 433 "extension_types": ["extension", "legacy_packaged_app"] |
430 } | 434 } |
431 } | 435 } |
OLD | NEW |