Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / extensions / shell / README
blobc0806774bdb2607326651e355624228bd1789d45
1 # Introduction
3 app_shell is an experimental project to build a minimal environment like
4 content_shell.
6 The goal is to be able to run a v2 app and supply most of the chrome.* extension
7 APIs without running the rest of Chrome.
9 app_shell is only officially supported on Chrome OS.
11 # How to run
13 $ app_shell --load-apps=/path/to/extension
15 # For example, you can try the calculator app:
17 $ app_shell --load-apps=chrome/common/extensions/docs/examples/apps/calculator/app/
19 # To load multiple apps, specify them in a comma separated list.  The first app
20 # will be launched:
22 $ app_shell --load-apps=/path/to/extension1,/path/to/extension2