| OLD | NEW |
| 1 <div id="pageData-name" class="pageData">Hello There!</div> | 1 <div id="pageData-name" class="pageData">Hello There!</div> |
| 2 | 2 |
| 3 <p> | 3 <p> |
| 4 This documentation tells you how to write <em>Google Chrome Extensions</em> &mda
sh; | 4 This documentation tells you how to write extensions |
| 5 small software programs | 5 and packaged apps for the |
| 6 that can modify and enhance the functionality of the | |
| 7 <a href="http://www.google.com/chrome">Google Chrome browser</a>. | 6 <a href="http://www.google.com/chrome">Google Chrome browser</a>. |
| 7 Because extensions came first, |
| 8 the APIs and these docs say <em>extension</em> everywhere, |
| 9 even though almost everything applies to packaged apps, as well. |
| 8 </p> | 10 </p> |
| 9 | 11 |
| 12 <p class="caution"> |
| 13 <b>Note:</b> |
| 14 Unless you see a note |
| 15 describing an exception for packaged apps, |
| 16 everything in this documentation applies to both extensions and packaged apps. |
| 17 </p> |
| 18 |
| 19 |
| 10 <h2 id="readme"> Where to start </h2> | 20 <h2 id="readme"> Where to start </h2> |
| 11 | 21 |
| 12 <p> | 22 <p> |
| 13 Before you write an extension, | 23 Before you code, |
| 14 read these: | 24 read these: |
| 15 </p> | 25 </p> |
| 16 | 26 |
| 17 <dl> | 27 <dl> |
| 18 <dt> <a href="getstarted.html">Getting Started (Hello, World!)</a> </dt> | 28 <dt> <a href="getstarted.html">Getting Started (Hello, World!)</a> </dt> |
| 19 <dd> Build a simple "Hello, World" extension in about 5 minutes </dd> | 29 <dd> Build a simple "Hello, World" extension in about 5 minutes </dd> |
| 20 | 30 |
| 21 <dt> <a href="overview.html">Overview</a> </dt> | 31 <dt> <a href="overview.html">Overview</a> </dt> |
| 22 <dd> Learn about the fundamental design points of the extension system </dd> | 32 <dd> Learn about the fundamental design points of the extension system </dd> |
| 23 </dl> | 33 </dl> |
| 24 | 34 |
| 25 <p> | 35 <p> |
| 26 Also check out these: | 36 Also check out these: |
| 27 </p> | 37 </p> |
| 28 | 38 |
| 29 <ul> | 39 <ul> |
| 30 <li> | 40 <li> |
| 31 <a href="devguide.html">Developer's Guide</a> | 41 <a href="devguide.html">Developer's Guide</a> |
| 32 </li> | 42 </li> |
| 33 <li> | 43 <li> |
| 34 <a href="samples.html">Samples</a> | 44 <a href="samples.html">Samples</a> |
| 35 </li> | 45 </li> |
| 36 <li> | 46 <li> |
| 37 <a href="http://groups.google.com/a/chromium.org/group/chromium-extensions">
Group: chromium-extensions</a> | 47 <a href="http://groups.google.com/a/chromium.org/group/chromium-extensions">
Group: chromium-extensions</a> |
| 38 </li> | 48 </li> |
| 39 <li> | 49 <li> |
| 40 <a href="http://code.google.com/chrome/extensions/index.html">Home: Google C
hrome Extensions</a> | 50 <a href="http://chrome.google.com/webstore">Chrome Web Store</a> |
| 41 </li> | 51 </li> |
| 42 <li> | 52 <li> |
| 43 <a href="https://chrome.google.com/extensions">Gallery</a> | 53 <a href="http://code.google.com/chrome/webstore/">Chrome Web Store |
| 54 developer documentation</a> |
| 44 </li> | 55 </li> |
| 45 </ul> | 56 </ul> |
| 46 | 57 |
| 47 <h2 id="versions"> Doc versions </h2> | 58 <h2 id="versions"> Doc versions </h2> |
| 48 <p> | 59 <p> |
| 49 In general, you should view these pages at | 60 In general, you should view these pages at |
| 50 <b>http://code.google.com/chrome/extensions/<em><filename></em></b> | 61 <b>http://code.google.com/chrome/extensions/<em><filename></em></b> |
| 51 (for example, | 62 (for example, |
| 52 <a href="http://code.google.com/chrome/extensions/overview.html">http://code.goo
gle.com/chrome/extensions/overview.html</a>). | 63 <a href="http://code.google.com/chrome/extensions/overview.html">http://code.goo
gle.com/chrome/extensions/overview.html</a>). |
| 53 However, if you need to see the very latest doc | 64 However, if you need to see the very latest doc |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 but haven't been integrated into it yet. | 132 but haven't been integrated into it yet. |
| 122 | 133 |
| 123 <p> | 134 <p> |
| 124 <strong>Note:</strong> | 135 <strong>Note:</strong> |
| 125 The trunk version of the doc is preliminary and might have errors. | 136 The trunk version of the doc is preliminary and might have errors. |
| 126 </p> | 137 </p> |
| 127 </td> | 138 </td> |
| 128 </tr> | 139 </tr> |
| 129 </table> | 140 </table> |
| 130 </p> | 141 </p> |
| OLD | NEW |