| OLD | NEW |
| 1 <h1>Before You Start</h1> | 1 <h1>Before You Start</h1> |
| 2 | 2 |
| 3 <p> | 3 <p> |
| 4 This documentation tells you how to write Chrome Apps. | 4 This documentation tells you how to write Chrome Apps. |
| 5 All developers, however, should know that the new APIs | 5 All developers, however, should know that the new APIs |
| 6 for Chrome Apps are being released as a developer preview. | 6 for Chrome Apps are being released as a developer preview. |
| 7 This means that they are evolving daily, | 7 This means that they are evolving daily, |
| 8 and anything you read now might be different in the near future. | 8 and anything you read now might be different in the near future. |
| 9 Please keep up to date with the API reference and documentation. | 9 Please keep up to date with the API reference and documentation. |
| 10 </p> | 10 </p> |
| 11 | 11 |
| 12 <p class="caution"> | 12 <p class="caution"> |
| 13 <b>Note:</b> | 13 <b>Note:</b> |
| 14 If you've written packaged apps before, | 14 If you've written packaged apps before, |
| 15 your <a href="/extensions/apps.html">legacy packaged apps</a> | 15 your <a href="/extensions/apps">legacy packaged apps</a> |
| 16 will still work the way they always have, | 16 will still work the way they always have, |
| 17 but they won't have access to the new APIs. | 17 but they won't have access to the new APIs. |
| 18 </p> | 18 </p> |
| 19 | 19 |
| 20 <h2 id="common">Common platform</h2> | 20 <h2 id="common">Common platform</h2> |
| 21 | 21 |
| 22 <p> | 22 <p> |
| 23 Chrome Apps and extensions share a common platform. | 23 Chrome Apps and extensions share a common platform. |
| 24 They can access many of the same APIs and | 24 They can access many of the same APIs and |
| 25 they have the same manifest and permissions format. | 25 they have the same manifest and permissions format. |
| 26 If you're familiar with the | 26 If you're familiar with the |
| 27 <a href="/extensions/index.html">Chrome Extension docs</a>, | 27 <a href="/extensions/index">Chrome Extension docs</a>, |
| 28 then the Reference docs should seem familiar. | 28 then the Reference docs should seem familiar. |
| 29 Many of the reference docs are shared; | 29 Many of the reference docs are shared; |
| 30 we've filtered accessibility to docs that aren't. | 30 we've filtered accessibility to docs that aren't. |
| 31 </p> | 31 </p> |
| 32 | 32 |
| 33 <h2 id="start">Where to start</h2> | 33 <h2 id="start">Where to start</h2> |
| 34 | 34 |
| 35 <ul> | 35 <ul> |
| 36 <li>Read the | 36 <li>Read the |
| 37 <a href="about_apps.html">Getting Started</a> guide.</li> | 37 <a href="about_apps">Getting Started</a> guide.</li> |
| 38 <li>Follow the | 38 <li>Follow the |
| 39 <a href="app_codelab.html">Todo App Codelab</a>.</li> | 39 <a href="app_codelab">Todo App Codelab</a>.</li> |
| 40 <li>Check out the | 40 <li>Check out the |
| 41 <a href="api_index.html">Chrome JavaScript APIs</a>.</li> | 41 <a href="api_index">Chrome JavaScript APIs</a>.</li> |
| 42 <li>Fork any and all | 42 <li>Fork any and all |
| 43 <a href="https://github.com/GoogleChrome/chrome-app-samples">chrome-app-sample
s</a> and make something of your own.</li> | 43 <a href="https://github.com/GoogleChrome/chrome-app-samples">chrome-app-sample
s</a> and make something of your own.</li> |
| 44 <li>Watch the | 44 <li>Watch the |
| 45 <a href="https://developers.google.com/live/chrome/">Chrome Apps GDL sessions</a
>.</li> | 45 <a href="https://developers.google.com/live/chrome/">Chrome Apps GDL sessions</a
>.</li> |
| 46 </ul> | 46 </ul> |
| 47 | 47 |
| 48 <h2 id="help">Send feedback!</h2> | 48 <h2 id="help">Send feedback!</h2> |
| 49 | 49 |
| 50 <p> | 50 <p> |
| 51 For Chrome Apps to succeed, | 51 For Chrome Apps to succeed, |
| 52 we need and want your feedback. | 52 we need and want your feedback. |
| 53 You can enter feedback at the | 53 You can enter feedback at the |
| 54 <a href="https://groups.google.com/a/chromium.org/group/chromium-apps">chromium-
apps group</a>, | 54 <a href="https://groups.google.com/a/chromium.org/group/chromium-apps">chromium-
apps group</a>, |
| 55 file a bug at the | 55 file a bug at the |
| 56 <a href="http://crbug.com/new">official issue tracker</a>, | 56 <a href="http://crbug.com/new">official issue tracker</a>, |
| 57 or press "Send Feedback" at the bottom of every doc page. | 57 or press "Send Feedback" at the bottom of every doc page. |
| 58 </p> | 58 </p> |
| 59 | 59 |
| 60 <p class="backtotop"><a href="#top">Back to top</a></p> | 60 <p class="backtotop"><a href="#top">Back to top</a></p> |
| OLD | NEW |