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

Side by Side Diff: chrome/common/extensions/docs/templates/articles/manifest/kiosk_enabled.html

Issue 342773003: Trying to get review for one-line change in Patch Set 3 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adding link to gallery of existing kiosk apps in the chrome web store. Created 6 years, 5 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 <h1>Kiosk Apps</h1> 1 <h1>Kiosk Apps</h1>
2 2
3 3
4 4
5 <p>Kiosk Apps are Chrome Apps that are designed to always run fullscreen using < a 5 <p>Kiosk Apps are Chrome Apps that are designed to always run fullscreen using < a
6 href="https://support.google.com/chromebook/answer/3134673">Single App Kiosk Mod e</a> 6 href="https://support.google.com/chromebook/answer/3134673">Single App Kiosk Mod e</a>
7 on Chrome OS and do not allow the user to exit 7 on Chrome OS and do not allow the user to exit
8 the app. They're great for a purpose-built Chrome device, such as a guest 8 the app. They're great for a purpose-built Chrome device, such as a guest
9 registration desk, a library catalog station, or a point-of-sale system in a sto re.</p> 9 registration desk, a library catalog station, or a point-of-sale system in a sto re.</p>
10 10
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 a regular session or Single App Kiosk Mode. If you want your app 65 a regular session or Single App Kiosk Mode. If you want your app
66 to run in Single App Kiosk Mode only, then also set <code>"kiosk_only"</code> to <code>true</code>. 66 to run in Single App Kiosk Mode only, then also set <code>"kiosk_only"</code> to <code>true</code>.
67 This prevents the app from being launched in a regular session. For example:</p> 67 This prevents the app from being launched in a regular session. For example:</p>
68 68
69 <pre> 69 <pre>
70 { 70 {
71 "app" : { 71 "app" : {
72 "background" : { 72 "background" : {
73 "scripts" : ["background.js"] 73 "scripts" : ["background.js"]
74 } 74 }
75 }, 75 },
76 "manifest_version" : 2, 76 "manifest_version" : 2,
77 "name" : "My Kiosk App", 77 "name" : "My Kiosk App",
78 "version" : "1.0", 78 "version" : "1.0",
79 ... 79 ...
80 80
81 // Set as Kiosk App 81 // Set as Kiosk App
82 "kiosk_enabled" : true, 82 "kiosk_enabled" : true,
83 "kiosk_only" : true 83 "kiosk_only" : true
84 } 84 }
85 </pre> 85 </pre>
(...skipping 14 matching lines...) Expand all
100 <ul> 100 <ul>
101 <li><a href= 101 <li><a href=
102 "https://github.com/KioskApps/InfoHub" 102 "https://github.com/KioskApps/InfoHub"
103 >LiveStream/Interactive display app</a></li> 103 >LiveStream/Interactive display app</a></li>
104 <li><a href= 104 <li><a href=
105 "https://github.com/KioskApps/SalesPoint" 105 "https://github.com/KioskApps/SalesPoint"
106 >Point of sale app</a></li> 106 >Point of sale app</a></li>
107 <li><a href= 107 <li><a href=
108 "https://github.com/KioskApps/QuickTicket" 108 "https://github.com/KioskApps/QuickTicket"
109 >Movie theater app</a></li> 109 >Movie theater app</a></li>
110 <li><a href=
111 "https://chrome.google.com/webstore/category/collection/kiosk-apps"
112 >Kiosk apps in the chrome web store</a></li>
110 </ul> 113 </ul>
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