OLD | NEW |
1 <h1 id="lab_2_work_with_code">Create Basic App</h1> | 1 <h1 id="lab_2_work_with_code">Create Basic App</h1> |
2 | 2 |
3 <p>There are three core pieces to any Chrome App:</p> | 3 <p>There are three core pieces to any Chrome App:</p> |
4 | 4 |
5 <ul> | 5 <ul> |
6 <li>The manifest that describes meta-information about your application: | 6 <li>The manifest that describes meta-information about your application: |
7 name, description, version number and how to launch your application</li> | 7 name, description, version number and how to launch your application</li> |
8 <li>The background script, | 8 <li>The background script, |
9 which sets up how your application responds to system events | 9 which sets up how your application responds to system events |
10 such as the user installing and launching the app and the system suspending it</
li> | 10 such as the user installing and launching the app and the system suspending it</
li> |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 The last part is the user interface: HTML, CSS, JavaScripts related to the inter
face, images, etc.</li> | 117 The last part is the user interface: HTML, CSS, JavaScripts related to the inter
face, images, etc.</li> |
118 <li>Chrome Apps can be debugged just like standard web pages | 118 <li>Chrome Apps can be debugged just like standard web pages |
119 using the Chrome Developer Tools. | 119 using the Chrome Developer Tools. |
120 But since an app doesn't have the Reload control of a browser, | 120 But since an app doesn't have the Reload control of a browser, |
121 a Reload App option has been added when you run in Developer mode.</li> | 121 a Reload App option has been added when you run in Developer mode.</li> |
122 </ul> | 122 </ul> |
123 | 123 |
124 <h2 id="you_should_also_read">You should also read</h2> | 124 <h2 id="you_should_also_read">You should also read</h2> |
125 | 125 |
126 <ul> | 126 <ul> |
127 <li><a href="first_app.html">Create Your First App</a> tutorial</li> | 127 <li><a href="first_app">Create Your First App</a> tutorial</li> |
128 <li><a href="app.runtime.html">chrome.app.runtime</a> reference</li> | 128 <li><a href="app.runtime">chrome.app.runtime</a> reference</li> |
129 <li><a href="app.window.html">chrome.app.window</a> reference</li> | 129 <li><a href="app.window">chrome.app.window</a> reference</li> |
130 </ul> | 130 </ul> |
131 | 131 |
132 <h2 id="what_39_s_next_">What's next?</h2> | 132 <h2 id="what_39_s_next_">What's next?</h2> |
133 | 133 |
134 <p>In <a href="app_codelab3_mvc.html">3 - Create MVC</a>, | 134 <p>In <a href="app_codelab3_mvc">3 - Create MVC</a>, |
135 you will use either pure JavaScript or | 135 you will use either pure JavaScript or |
136 <a href="http://angularjs.org/">AngluarJS</a> | 136 <a href="http://angularjs.org/">AngluarJS</a> |
137 to build your app's model, view, and controller.</p> | 137 to build your app's model, view, and controller.</p> |
OLD | NEW |