| OLD | NEW |
| 1 <meta name="doc-family" content="apps"> | 1 <meta name="doc-family" content="apps"> |
| 2 <h1>Create Your First App</h1> | 2 <h1>Create Your First App</h1> |
| 3 | 3 |
| 4 | 4 |
| 5 <p> | 5 <p> |
| 6 This tutorial walks you through creating your first Chrome App. | 6 This tutorial walks you through creating your first Chrome App. |
| 7 Chrome Apps are structured similarly to extensions | 7 Chrome Apps are structured similarly to extensions |
| 8 so current developers will recognize the manifest and packaging methods. | 8 so current developers will recognize the manifest and packaging methods. |
| 9 When you're done, | 9 When you're done, |
| 10 you'll just need to produce a zip file of your code and assets | 10 you'll just need to produce a zip file of your code and assets |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 <li>All code must be included in the Chrome App package. This includes HTML, J
S, CSS | 23 <li>All code must be included in the Chrome App package. This includes HTML, J
S, CSS |
| 24 and Native Client modules.</li> | 24 and Native Client modules.</li> |
| 25 <li>All <strong>icons</strong> and other assets must be included | 25 <li>All <strong>icons</strong> and other assets must be included |
| 26 in the package as well.</li> | 26 in the package as well.</li> |
| 27 </ul> | 27 </ul> |
| 28 | 28 |
| 29 <p class="note"> | 29 <p class="note"> |
| 30 <b>API Samples: </b> | 30 <b>API Samples: </b> |
| 31 Want to play with the code? | 31 Want to play with the code? |
| 32 Check out the | 32 Check out the |
| 33 <a href="https://github.com/GoogleChrome/chrome-app-samples/tree/master/hello-wo
rld">hello-world</a> | 33 <a href="https://github.com/GoogleChrome/chrome-app-samples/tree/master/samples/
hello-world">hello-world</a> |
| 34 sample. | 34 sample. |
| 35 </p> | 35 </p> |
| 36 | 36 |
| 37 <h2 id="one">Step 1: Create the manifest</h2> | 37 <h2 id="one">Step 1: Create the manifest</h2> |
| 38 | 38 |
| 39 <p> | 39 <p> |
| 40 First create your <code>manifest.json</code> file | 40 First create your <code>manifest.json</code> file |
| 41 (<a href="manifest">Formats: Manifest Files</a> | 41 (<a href="manifest">Formats: Manifest Files</a> |
| 42 describes this manifest in detail): | 42 describes this manifest in detail): |
| 43 </p> | 43 </p> |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 </li> | 179 </li> |
| 180 <li> | 180 <li> |
| 181 <code>--app-id=ajjhbohkjpincjgiieeomimlgnll</code> launches an app | 181 <code>--app-id=ajjhbohkjpincjgiieeomimlgnll</code> launches an app |
| 182 already loaded into Chrome. It does not restart any previously running | 182 already loaded into Chrome. It does not restart any previously running |
| 183 app, but it does launch the new app with any updated content. | 183 app, but it does launch the new app with any updated content. |
| 184 </li> | 184 </li> |
| 185 </ul> | 185 </ul> |
| 186 </p> | 186 </p> |
| 187 | 187 |
| 188 <p class="backtotop"><a href="#top">Back to top</a></p> | 188 <p class="backtotop"><a href="#top">Back to top</a></p> |
| OLD | NEW |