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 { | 5 { |
6 "activeTab": { | 6 "activeTab": { |
7 "channel": "stable", | 7 "channel": "stable", |
8 "extension_types": ["extension", "packaged_app"], | 8 "extension_types": ["extension", "packaged_app"], |
9 "min_manifest_version": 2 | 9 "min_manifest_version": 2 |
10 }, | 10 }, |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 "networkingPrivate": { | 264 "networkingPrivate": { |
265 "channel": "dev", | 265 "channel": "dev", |
266 "extension_types": ["extension", "packaged_app"], | 266 "extension_types": ["extension", "packaged_app"], |
267 "whitelist": [ | 267 "whitelist": [ |
268 "pkedcjkdefgpdelpbcmbmeomcjbeemfm", // CV | 268 "pkedcjkdefgpdelpbcmbmeomcjbeemfm", // CV |
269 "fmfcbgogabcbclcofgocippekhfcmgfj", // CV Staging | 269 "fmfcbgogabcbclcofgocippekhfcmgfj", // CV Staging |
270 "hfaagokkkhdbgiakmmlclaapfelnkoah" // CV Canary | 270 "hfaagokkkhdbgiakmmlclaapfelnkoah" // CV Canary |
271 ] | 271 ] |
272 }, | 272 }, |
273 "notifications": { | 273 "notifications": { |
| 274 // Note that the chrome.notifications API is currently restricted |
| 275 // to dev channel, extension/platform_app. This isn't done through |
| 276 // this file, but rather on a method-by-method basis. |
274 "channel": "stable", | 277 "channel": "stable", |
275 "extension_types": [ | 278 "extension_types": [ |
276 "extension", "packaged_app", "hosted_app", "platform_app" | 279 "extension", "packaged_app", "hosted_app", "platform_app" |
277 ] | 280 ] |
278 }, | 281 }, |
279 "echoPrivate": { | 282 "echoPrivate": { |
280 "channel": "stable", | 283 "channel": "stable", |
281 "extension_types": ["extension", "packaged_app"], | 284 "extension_types": ["extension", "packaged_app"], |
282 "location": "component" | 285 "location": "component" |
283 }, | 286 }, |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
448 }, | 451 }, |
449 "webRequestBlocking": { | 452 "webRequestBlocking": { |
450 "channel": "stable", | 453 "channel": "stable", |
451 "extension_types": ["extension", "packaged_app"] | 454 "extension_types": ["extension", "packaged_app"] |
452 }, | 455 }, |
453 "webview": { | 456 "webview": { |
454 "channel": "stable", | 457 "channel": "stable", |
455 "extension_types": ["platform_app"] | 458 "extension_types": ["platform_app"] |
456 } | 459 } |
457 } | 460 } |
OLD | NEW |