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

Side by Side Diff: chrome/common/extensions/docs/templates/json/manifest.json

Issue 23604068: Add "kiosk_only" manifest attribute for platform apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change ManifestData to single KioskModeInfo Created 7 years, 3 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 { 1 {
2 "app": { 2 "app": {
3 "documentation": "manifest/app.html", 3 "documentation": "manifest/app.html",
4 "example": {}, 4 "example": {},
5 "level": "required" 5 "level": "required"
6 }, 6 },
7 "app.background": { 7 "app.background": {
8 "example": {"scripts": ["background.js"]}, 8 "example": {"scripts": ["background.js"]},
9 "level": "required" 9 "level": "required"
10 }, 10 },
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 "example": "spanning or split" 71 "example": "spanning or split"
72 }, 72 },
73 "key": { 73 "key": {
74 "documentation": "manifest/key.html", 74 "documentation": "manifest/key.html",
75 "example": "publicKey" 75 "example": "publicKey"
76 }, 76 },
77 "kiosk_enabled": { 77 "kiosk_enabled": {
78 "documentation": "manifest/kiosk_enabled.html", 78 "documentation": "manifest/kiosk_enabled.html",
79 "example": true 79 "example": true
80 }, 80 },
81 "kiosk_only": {
82 "documentation": "manifest/kiosk_only.html",
not at google - send to devlin 2013/09/24 21:57:39 I.e. "manifest/kiosk_enabled.html#kiosk_only"
Tim Song 2013/09/24 22:38:25 Done.
83 "example": true
84 },
81 "manifest_version": { 85 "manifest_version": {
82 "documentation": "manifest/manifest_version.html", 86 "documentation": "manifest/manifest_version.html",
83 "example": 2, 87 "example": 2,
84 "level": "required" 88 "level": "required"
85 }, 89 },
86 "minimum_chrome_version": { 90 "minimum_chrome_version": {
87 "documentation": "manifest/minimum_chrome_version.html", 91 "documentation": "manifest/minimum_chrome_version.html",
88 "example": "versionString" 92 "example": "versionString"
89 }, 93 },
90 "nacl_modules": { 94 "nacl_modules": {
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 "version": { 155 "version": {
152 "documentation": "manifest/version.html", 156 "documentation": "manifest/version.html",
153 "example": "versionString", 157 "example": "versionString",
154 "level": "required" 158 "level": "required"
155 }, 159 },
156 "web_accessible_resources": { 160 "web_accessible_resources": {
157 "documentation": "manifest/web_accessible_resources.html", 161 "documentation": "manifest/web_accessible_resources.html",
158 "example": [] 162 "example": []
159 } 163 }
160 } 164 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698