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

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

Issue 11547033: Implement declarativeContent API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync Created 7 years, 11 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 "extension_types": ["extension", "packaged_app"] 112 "extension_types": ["extension", "packaged_app"]
113 }, 113 },
114 "debugger": { 114 "debugger": {
115 "channel": "stable", 115 "channel": "stable",
116 "extension_types": ["extension", "packaged_app"] 116 "extension_types": ["extension", "packaged_app"]
117 }, 117 },
118 "devtools": { 118 "devtools": {
119 "channel": "stable", 119 "channel": "stable",
120 "extension_types": ["extension", "packaged_app"] 120 "extension_types": ["extension", "packaged_app"]
121 }, 121 },
122 "declarativeContent": {
123 "channel": "trunk",
124 "extension_types": ["extension"]
125 },
122 "declarativeWebRequest": { 126 "declarativeWebRequest": {
123 "channel": "beta", 127 "channel": "beta",
124 "extension_types": ["extension", "packaged_app"] 128 "extension_types": ["extension", "packaged_app"]
125 }, 129 },
126 "downloads": { 130 "downloads": {
127 "channel": "dev", 131 "channel": "dev",
128 "extension_types": [ 132 "extension_types": [
129 "extension", "packaged_app" 133 "extension", "packaged_app"
130 ] 134 ]
131 }, 135 },
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 }, 418 },
415 "webRequestBlocking": { 419 "webRequestBlocking": {
416 "channel": "stable", 420 "channel": "stable",
417 "extension_types": ["extension", "packaged_app"] 421 "extension_types": ["extension", "packaged_app"]
418 }, 422 },
419 "webview": { 423 "webview": {
420 "channel": "stable", 424 "channel": "stable",
421 "extension_types": ["platform_app"] 425 "extension_types": ["platform_app"]
422 } 426 }
423 } 427 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698