Are Chrome web apps opened as a Windows executable file?
Oron J
April 29, 2014 at 12:07 pm
Yes, they can be opened like Windows apps, but they are not true Windows executables. Instead, they are essentially either special web shortcuts, or in effect, an application which uses Chrome as a virtual environment. In other words, these applications will not run on a computer without Chrome, and they will run on other systems (Mac, Linux) so long as Chrome is installed on them.
Yes, they can be opened like Windows apps, but they are not true Windows executables. Instead, they are essentially either special web shortcuts, or in effect, an application which uses Chrome as a virtual environment. In other words, these applications will not run on a computer without Chrome, and they will run on other systems (Mac, Linux) so long as Chrome is installed on them.
Thanks. Are they similar to apps for Chromebooks?
Yes, very much so.
There are two different types of installable web apps: packaged and hosted
https://developer.chrome.com/webstore/apps_vs_extensions#pkgVsHost
https://developer.chrome.com/webstore/launching
A hosted app requires a .crx file that contains metadata describing the app. (The .crx file format is just a variation of ZIP that's used by Google Chrome.) An app's .crx file can be hosted on your own server or, more typically, by the Chrome Web Store.
https://developers.google.com/chrome/apps/docs/developers_guide?csw=1
You can easily make any existing web app installable, letting you publish it as a hosted app. There's no need to rewrite the web app or change technologies. All you need to provide are an icon and a manifest.
Thanks. Nicely put