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

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

Issue 10782030: Add content pack information to Extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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
« no previous file with comments | « no previous file | chrome/common/extensions/extension.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "app": { 6 "app": {
7 "channel": "stable", 7 "channel": "stable",
8 "extension_types": ["packaged_app", "hosted_app", "platform_app"] 8 "extension_types": ["packaged_app", "hosted_app", "platform_app"]
9 }, 9 },
10 // The default platform app CSP can only be overridden by whitelisted apps. 10 // The default platform app CSP can only be overridden by whitelisted apps.
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 }, 69 },
70 "chrome_url_overrides": { 70 "chrome_url_overrides": {
71 "channel": "stable", 71 "channel": "stable",
72 "extension_types": ["extension", "packaged_app"] 72 "extension_types": ["extension", "packaged_app"]
73 }, 73 },
74 "commands": { 74 "commands": {
75 "channel": "stable", 75 "channel": "stable",
76 "extension_types": ["extension", "packaged_app", "platform_app"], 76 "extension_types": ["extension", "packaged_app", "platform_app"],
77 "min_manifest_version": 2 77 "min_manifest_version": 2
78 }, 78 },
79 "content_pack": {
80 "channel": "dev",
81 "extension_types": ["extension"]
82 },
79 "content_security_policy": { 83 "content_security_policy": {
80 "channel": "stable", 84 "channel": "stable",
81 // Platform apps have a restricted content security policy that cannot be 85 // Platform apps have a restricted content security policy that cannot be
82 // overriden (except for a whitelist of exceptions, see the 86 // overriden (except for a whitelist of exceptions, see the
83 // app.content_security_policy whitelist). 87 // app.content_security_policy whitelist).
84 "extension_types": ["extension", "packaged_app"] 88 "extension_types": ["extension", "packaged_app"]
85 }, 89 },
86 "content_scripts": { 90 "content_scripts": {
87 "channel": "stable", 91 "channel": "stable",
88 "extension_types": ["extension", "packaged_app"] 92 "extension_types": ["extension", "packaged_app"]
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 "channel": "stable", 266 "channel": "stable",
263 "extension_types": "all" 267 "extension_types": "all"
264 }, 268 },
265 "web_accessible_resources": { 269 "web_accessible_resources": {
266 "channel": "stable", 270 "channel": "stable",
267 "extension_types": [ 271 "extension_types": [
268 "extension", "packaged_app", "hosted_app" 272 "extension", "packaged_app", "hosted_app"
269 ] 273 ]
270 } 274 }
271 } 275 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/extension.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698