Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Side by Side Diff: chrome/common/extensions/docs/server2/templates/articles/docs.html

Issue 10832042: Extensions Docs Server: Doc conversion script (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: everything but svn stuff Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <h1>Hello There!</h1>
2
3 <p>
4 This documentation tells you how to write extensions
5 and packaged apps for the
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 </p>
10
11 <p class="caution">
12 <b>Note:</b>
13 Unless you see a note
14 describing an exception for packaged apps,
15 everything in this documentation applies to both extensions and packaged apps.
16 </p>
17
18
19 <h2 id="readme"> Where to start </h2>
20
21 <p>
22 Before you code,
23 read these:
24 </p>
25
26 <dl>
27 <dt> <a href="getstarted.html">Getting Started (Hello, World!)</a> </dt>
28 <dd> Build a simple "Hello, World" extension in about 5 minutes </dd>
29
30 <dt> <a href="overview.html">Overview</a> </dt>
31 <dd> Learn about the fundamental design points of the extension system </dd>
32 </dl>
33
34 <p>
35 Also check out these:
36 </p>
37
38 <ul>
39 <li>
40 <a href="devguide.html">Developer's Guide</a>
41 </li>
42 <li>
43 <a href="samples.html">Samples</a>
44 </li>
45 <li>
46 <a href="http://stackoverflow.com/questions/tagged/google-chrome-extension"> Stack Overflow [google-chrome-extension] tag</a>
47 </li>
48 <li>
49 <a href="http://groups.google.com/a/chromium.org/group/chromium-extensions"> Group: chromium-extensions</a>
50 </li>
51 <li>
52 <a href="http://chrome.google.com/webstore">Chrome Web Store</a>
53 </li>
54 <li>
55 <a href="http://code.google.com/chrome/webstore/">Chrome Web Store
56 developer documentation</a>
57 </li>
58 </ul>
59
60 <h2 id="versions"> Doc versions </h2>
61 <p>
62 In general, you should view these pages at
63 <b>http://code.google.com/chrome/extensions/<em>&lt;filename></em></b>
64 (for example,
65 <a href="http://code.google.com/chrome/extensions/overview.html">http://code.goo gle.com/chrome/extensions/overview.html</a>).
66 However, if you need to see the very latest doc
67 or you're using a different version of Google Chrome
68 than most of the world is
69 (perhaps the <a href="http://dev.chromium.org/getting-involved/dev-channel">Dev channel</a>),
70 you might want to use a different URL
71 (for example,
72 <a href="http://code.google.com/chrome/extensions/dev/overview.html">.../extensi ons/<b>dev/</b>overview.html</a>).
73 The following table lists the doc locations and explains how they differ.
74 </p>
75
76 <p>
77 <table class="noborders">
78 <tr>
79 <th> URL </th> <th> Version </th>
80 </tr>
81 <tr>
82 <td>
83 <a href="http://code.google.com/chrome/extensions/overview.html">.../exten sions/...</a>
84 </td>
85 <td>
86 The version you should probably be using.
87 This documents the most stable version of the extension API.
88 </td>
89 </tr>
90 <tr>
91 <td>
92 <a href="http://code.google.com/chrome/extensions/beta/overview.html">.../ extensions/<b>beta/</b>...</a>
93 </td>
94 <td>
95 <p>
96 Documentation for the Beta channel version of Google Chrome.
97 </p>
98
99 <p>
100 <strong>Note:</strong>
101 APIs on the Beta channel are subject to change.
102 </p>
103 </td>
104 </tr>
105 <tr>
106 <td>
107 <a href="http://code.google.com/chrome/extensions/dev/overview.html">.../e xtensions/<b>dev/</b>...</a>
108 </td>
109 <td>
110 <p>
111 Documentation for the Dev channel version of Google Chrome.
112 This version might also have bug fixes and feature information
113 that are relevant to the current doc
114 but haven't been integrated into it yet.
115 </p>
116
117 <p>
118 <strong>Note:</strong>
119 APIs on the Dev channel are subject to change.
120 </p>
121 </td>
122 </tr>
123 <tr>
124 <td>
125 <a href="http://code.google.com/chrome/extensions/trunk/overview.html">... /extensions/<b>trunk/</b>...</a>
126 </td>
127 <td>
128 The very latest documentation.
129 Look here if you're using
130 <a href="http://tools.google.com/dlpage/chromesxs">Canary</a>
131 or a tip-of-tree version of
132 <a href="http://dev.chromium.org">Chromium</a>
133 or if you're curious about features to come.
134 This version might also have bug fixes and feature information
135 that are relevant to the current doc
136 but haven't been integrated into it yet.
137
138 <p>
139 <strong>Note:</strong>
140 The trunk version of the doc is preliminary and might have errors.
141 </p>
142 </td>
143 </tr>
144 </table>
145 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698