diff options
Diffstat (limited to 'chrome/common/extensions/docs/static/docs.html')
-rw-r--r-- | chrome/common/extensions/docs/static/docs.html | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/chrome/common/extensions/docs/static/docs.html b/chrome/common/extensions/docs/static/docs.html new file mode 100644 index 0000000..87b11e4 --- /dev/null +++ b/chrome/common/extensions/docs/static/docs.html @@ -0,0 +1,131 @@ +<div id="pageData-title" class="pageData">Hello There!</div> + +<p> +This documentation tells you how to write <em>Google Chrome Extensions</em> — +small software programs +that can modify and enhance the functionality of the +<a href="http://www.google.com/chrome">Google Chrome browser</a>. +</p> + +<h2 id="readme"> Where to start </h2> + +<p> +Before you write an extension, +read these: +</p> + +<ul> + <li> + <a href="getstarted.html">Getting Started (Hello, World!)</a> + </li> + <li> + <a href="overview.html">Overview</a> + </li> +</ul> + +<p> +Here are some other places to check out: +</p> + +<ul> + <li> + <a href="samples.html">Samples</a> + </li> + <li> + <a href="http://groups.google.com/group/chromium-extensions">Group: chromium-extensions</a> + </li> + <li> + <a href="http://code.google.com/chrome/extensions/index.html">Home: Google Chrome Extensions</a> + </li> + <li> + <a href="https://chrome.google.com/extensions">Gallery</a> + </li> +</ul> + +<h2 id="versions"> Doc versions </h2> +<p> +In general, you should view these pages at +<b>http://code.google.com/chrome/extensions/<em><filename></em></b> +(for example, +<a href="http://code.google.com/chrome/extensions/overview.html">http://code.google.com/chrome/extensions/overview.html</a>). +However, if you need to see the very latest doc +or you're using a different version of Google Chrome +than most of the world is +(perhaps the <a href="http://dev.chromium.org/getting-involved/dev-channel">Dev channel</a>), +you might want to use a different URL +(for example, +<a href="http://code.google.com/chrome/extensions/dev/overview.html">.../extensions/<b>dev/</b>overview.html</a>). +The following table lists the doc locations and explains how they differ. +</p> + +<p> +<table class="noborders"> + <tr> + <th> URL </th> <th> Version </th> + </tr> + <tr> + <td> + <a href="http://code.google.com/chrome/extensions/overview.html">.../extensions/...</a> + </td> + <td> + The version you should probably be using. + This documents the most stable version of the extension API. + </td> + </tr> + <tr> + <td> + <a href="http://code.google.com/chrome/extensions/beta/overview.html">.../extensions/<b>beta/</b>...</a> + </td> + <td> + <p> + Documentation for the Beta channel version of Google Chrome. + </p> + + <p> + <strong>Note:</strong> + APIs on the Beta channel are subject to change. + </p> + </td> + </tr> + <tr> + <td> + <a href="http://code.google.com/chrome/extensions/dev/overview.html">.../extensions/<b>dev/</b>...</a> + </td> + <td> + <p> + Documentation for the Dev channel version of Google Chrome. + Look here if you're using a tip-of-tree version of + <a href="http://dev.chromium.org/">Chromium</a> + or if you're curious about features to come. + This version might also have bug fixes and feature information + that are relevant to the current doc + but haven't been integrated into them yet. + </p> + + <p> + <strong>Note:</strong> + APIs on the Dev channel are subject to change. + </p> + </td> + </tr> + <tr> + <td> + <a href="http://code.google.com/chrome/extensions/trunk/overview.html">.../extensions/<b>trunk/</b>...</a> + </td> + <td> + The very latest documentation. + Look here if you're using a tip-of-tree version of + <a href="http://dev.chromium.org">Chromium</a> + or if you're curious about features to come. + This version might also have bug fixes and feature information + that are relevant to the current doc + but haven't been integrated into them yet. + + <p> + <strong>Note:</strong> + The trunk version of the doc is preliminary and might have errors. + </p> + </td> + </tr> +</table> +</p> |