OLD | NEW |
---|---|
1 # Introduction | 1 # Introduction |
2 | 2 |
3 app_shell is an experimental project to build a minimal environment like | 3 app_shell is an experimental project to build a minimal environment like |
4 content_shell. | 4 content_shell. |
5 | 5 |
6 The goal is to be able to run a v2 app and supply most of the chrome.* extension | 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. | 7 APIs without running the rest of Chrome. |
8 | 8 |
9 app_shell is only officially supported on Chrome OS. | 9 app_shell is only officially supported on Chrome OS. |
10 | 10 |
11 # How to run | 11 # How to run |
12 | 12 |
13 $ app_shell --app-shell-app-path=/path/to/extension | 13 $ app_shell --load-app=/path/to/extension |
Daniel Erat
2014/11/14 23:08:45
update this example and the other one to --load-ap
Zachary Kuznia
2014/11/14 23:14:43
Done.
| |
14 | 14 |
15 # For example, you can try the calculator app: | 15 # For example, you can try the calculator app: |
16 | 16 |
17 $ app_shell --app-shell-app-path=chrome/common/extensions/docs/examples/apps/cal culator/app/ | 17 $ app_shell --load-app=chrome/common/extensions/docs/examples/apps/calculator/ap p/ |
OLD | NEW |