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

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

Issue 10834193: Add an 'author' field to the manifest definition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | no next file » | 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 "app.background": { 10 "app.background": {
11 "channel": "stable", 11 "channel": "stable",
12 "extension_types": ["platform_app"], 12 "extension_types": ["platform_app"],
13 "min_manifest_version": 2 13 "min_manifest_version": 2
14 }, 14 },
15 "app.launch": { 15 "app.launch": {
16 "channel": "stable", 16 "channel": "stable",
17 "extension_types": ["packaged_app", "hosted_app"] 17 "extension_types": ["packaged_app", "hosted_app"]
18 }, 18 },
19 "app.isolation": { 19 "app.isolation": {
20 "channel": "stable", 20 "channel": "stable",
21 // Platform apps always have isolated storage, thus they cannot specify it 21 // Platform apps always have isolated storage, thus they cannot specify it
22 // via the manifest. 22 // via the manifest.
23 "extension_types": ["packaged_app", "hosted_app"] 23 "extension_types": ["packaged_app", "hosted_app"]
24 }, 24 },
25 "author": {
26 "channel": "stable",
27 "extension_types": "all"
28 },
25 "background": { 29 "background": {
26 "channel": "stable", 30 "channel": "stable",
27 "extension_types": [ 31 "extension_types": [
28 // Platform apps specify their background page via app.background. 32 // Platform apps specify their background page via app.background.
29 "extension", "packaged_app", "hosted_app" 33 "extension", "packaged_app", "hosted_app"
30 ] 34 ]
31 }, 35 },
32 "background.persistent": { 36 "background.persistent": {
33 "channel": "stable", 37 "channel": "stable",
34 "extension_types": [ 38 "extension_types": [
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 "channel": "stable", 227 "channel": "stable",
224 "extension_types": "all" 228 "extension_types": "all"
225 }, 229 },
226 "web_accessible_resources": { 230 "web_accessible_resources": {
227 "channel": "stable", 231 "channel": "stable",
228 "extension_types": [ 232 "extension_types": [
229 "extension", "packaged_app", "hosted_app" 233 "extension", "packaged_app", "hosted_app"
230 ] 234 ]
231 } 235 }
232 } 236 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698