Reputation: 28158
I am building my first local Chrome App using this tutorial
My goal is to build an app that launches fullscreen when the PC is started. The app can be closed by pressing a certain button (Q) but otherwise the user should not be able to close the app.
Is this possible using Google Chrome Apps? How do you launch fullscreen, and how do you prevent the user from closing the app?
Can you prevent the user right-clicking to inspect the page, or clicking on the top menu bar to close the app?
Upvotes: 0
Views: 2153
Reputation: 8855
Sounds like you may want to use kiosk mode. Use this manifest permission for your app, as listed here.
You can enter kiosk mode from the chrome command line as well, with --kiosk
.
Upvotes: 2