I have a simple HTML app. Its just a single HTML page with all the javascript and css styling. I want to make Chrome app or Extension out of it.
What is difference between Chrome App and Chrome Extension? I am confused...
So is it possible to do so?
I have a simple HTML app. Its just a single HTML page with all the javascript and css styling. I want to make Chrome app or Extension out of it.
What is difference between Chrome App and Chrome Extension? I am confused...
So is it possible to do so?
A Chrome web app is something which runs in its own Chrome browser instance and does not have any global impact upon the browser. Basically, it's just a website running in its own Chrome frame. Some files may require local storage, but will only be used in that browser instance.
An extension runs globally on your browser - so it'll be present regardless of which page you're viewing. They modify the browser itself in order to add global functionality.
Edit: On searching, this has already been answered here - Difference between Chrome Apps and Extensions
You should check Building a Chrome Extension. There you'll find really good tutorial and it might help you in creating applications and extensions for Chrome.