Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(385)

Side by Side Diff: chrome/common/extensions/api/_permission_features.json

Issue 11038021: Implement Chrome Extension TabCapture API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments, add command line flag Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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": "dev", 7 "channel": "dev",
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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 }, 267 },
268 "systemPrivate": { 268 "systemPrivate": {
269 "channel": "stable", 269 "channel": "stable",
270 "extension_types": ["extension", "packaged_app"], 270 "extension_types": ["extension", "packaged_app"],
271 "location": "component" 271 "location": "component"
272 }, 272 },
273 "tabs": { 273 "tabs": {
274 "channel": "stable", 274 "channel": "stable",
275 "extension_types": ["extension", "packaged_app"] 275 "extension_types": ["extension", "packaged_app"]
276 }, 276 },
277 "tabCapture": {
278 "channel": "trunk",
279 "extension_types": ["extension", "packaged_app"]
280 },
277 "terminalPrivate": { 281 "terminalPrivate": {
278 "channel": "stable", 282 "channel": "stable",
279 "extension_types": ["extension", "packaged_app", "platform_app"], 283 "extension_types": ["extension", "packaged_app", "platform_app"],
280 "whitelist": [ 284 "whitelist": [
281 "pnhechapfaindjhompbnflcldabbghjo", // HTerm 285 "pnhechapfaindjhompbnflcldabbghjo", // HTerm
282 "okddffdblfhhnmhodogpojmfkjmhinfp" // HTerm dev 286 "okddffdblfhhnmhodogpojmfkjmhinfp" // HTerm dev
283 ] 287 ]
284 }, 288 },
285 "topSites": { 289 "topSites": {
286 "channel": "stable", 290 "channel": "stable",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 }, 338 },
335 "webRequest": { 339 "webRequest": {
336 "channel": "stable", 340 "channel": "stable",
337 "extension_types": ["extension", "packaged_app"] 341 "extension_types": ["extension", "packaged_app"]
338 }, 342 },
339 "webRequestBlocking": { 343 "webRequestBlocking": {
340 "channel": "stable", 344 "channel": "stable",
341 "extension_types": ["extension", "packaged_app"] 345 "extension_types": ["extension", "packaged_app"]
342 } 346 }
343 } 347 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698