OLD | NEW |
1 <!DOCTYPE html><!-- This page is a placeholder for generated extensions api doc.
Note: | 1 <!DOCTYPE html><!-- This page is a placeholder for generated extensions api doc.
Note: |
2 1) The <head> information in this page is significant, should be uniform | 2 1) The <head> information in this page is significant, should be uniform |
3 across api docs and should be edited only with knowledge of the | 3 across api docs and should be edited only with knowledge of the |
4 templating mechanism. | 4 templating mechanism. |
5 3) All <body>.innerHTML is genereated as an rendering step. If viewed in a | 5 3) All <body>.innerHTML is genereated as an rendering step. If viewed in a |
6 browser, it will be re-generated from the template, json schema and | 6 browser, it will be re-generated from the template, json schema and |
7 authored overview content. | 7 authored overview content. |
8 4) The <body>.innerHTML is also generated by an offline step so that this | 8 4) The <body>.innerHTML is also generated by an offline step so that this |
9 page may easily be indexed by search engines. | 9 page may easily be indexed by search engines. |
10 --><html xmlns="http://www.w3.org/1999/xhtml"><head> | 10 --><html xmlns="http://www.w3.org/1999/xhtml"><head> |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 | 195 |
196 <div class="g-unit" id="gc-pagecontent"> | 196 <div class="g-unit" id="gc-pagecontent"> |
197 <div id="pageTitle"> | 197 <div id="pageTitle"> |
198 <h1 class="page_title">Tutorial: Getting Started (Hello, World!)</h1> | 198 <h1 class="page_title">Tutorial: Getting Started (Hello, World!)</h1> |
199 </div> | 199 </div> |
200 <!-- TABLE OF CONTENTS --> | 200 <!-- TABLE OF CONTENTS --> |
201 <div id="toc"> | 201 <div id="toc"> |
202 <h2>Contents</h2> | 202 <h2>Contents</h2> |
203 <ol> | 203 <ol> |
204 <li> | 204 <li> |
205 <a href="#browser">Get your browser ready</a> | |
206 <ol> | |
207 <li style="display: none; "> | |
208 <a>h3Name</a> | |
209 </li> | |
210 </ol> | |
211 </li><li> | |
212 <a href="#load">Create and load an extension</a> | 205 <a href="#load">Create and load an extension</a> |
213 <ol> | 206 <ol> |
214 <li style="display: none; "> | 207 <li style="display: none; "> |
215 <a>h3Name</a> | 208 <a>h3Name</a> |
216 </li> | 209 </li> |
217 </ol> | 210 </ol> |
218 </li><li> | 211 </li><li> |
219 <a href="#code">Add code to the extension</a> | 212 <a href="#code">Add code to the extension</a> |
220 <ol> | 213 <ol> |
221 <li style="display: none; "> | 214 <li style="display: none; "> |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 | 270 |
278 <p> | 271 <p> |
279 This tutorial walks you through creating a simple extension. | 272 This tutorial walks you through creating a simple extension. |
280 You'll add an icon to Google Chrome | 273 You'll add an icon to Google Chrome |
281 that, when clicked, displays an automatically generated page. | 274 that, when clicked, displays an automatically generated page. |
282 The icon and page will look something like this: | 275 The icon and page will look something like this: |
283 </p> | 276 </p> |
284 | 277 |
285 <img src="images/hello-world-small.png" width="300" height="221" alt="a window w
ith a grid of images related to HELLO WORLD"> | 278 <img src="images/hello-world-small.png" width="300" height="221" alt="a window w
ith a grid of images related to HELLO WORLD"> |
286 | 279 |
287 | |
288 <h2 id="browser">Get your browser ready</h2> | |
289 | |
290 <p> | 280 <p> |
291 Extensions are supported on the normal, | 281 You can develop extensions using any release of Google Chrome, |
292 "stable channel" release of Google Chrome for Windows. | 282 on Windows, Mac, or Linux. |
293 To develop extensions on Linux or Mac, | |
294 you need to get on an early access release channel of Google Chrome. | |
295 </p> | 283 </p> |
296 | 284 |
297 <ul> | |
298 <li> <b>Windows</b>: Use any release of Google Chrome </li> | |
299 <li> <b>Linux</b>: Subscribe to the <a href="http://www.google.com/landing/chr
ome/beta/">Beta channel</a> </li> | |
300 <li> <b>Mac</b>: Subscribe to the <a href="http://www.chromium.org/getting-inv
olved/dev-channel#TOC-Mac">Dev channel</a> </li> | |
301 </ul> | |
302 | |
303 <h2 id="load">Create and load an extension</h2> | 285 <h2 id="load">Create and load an extension</h2> |
304 <p> | 286 <p> |
305 In this section, you'll write an extension | 287 In this section, you'll write an extension |
306 that adds a <em>browser action</em> | 288 that adds a <em>browser action</em> |
307 to the toolbar of Google Chrome. | 289 to the toolbar of Google Chrome. |
308 </p> | 290 </p> |
309 | 291 |
310 <ol> | 292 <ol> |
311 <li> | 293 <li> |
312 Create a folder somewhere on your computer to contain your extension's code. | 294 Create a folder somewhere on your computer to contain your extension's code. |
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 _uff=0; | 607 _uff=0; |
626 urchinTracker(); | 608 urchinTracker(); |
627 } | 609 } |
628 catch(e) {/* urchinTracker not available. */} | 610 catch(e) {/* urchinTracker not available. */} |
629 </script> | 611 </script> |
630 <!-- end analytics --> | 612 <!-- end analytics --> |
631 </div> | 613 </div> |
632 </div> <!-- /gc-footer --> | 614 </div> <!-- /gc-footer --> |
633 </div> <!-- /gc-container --> | 615 </div> <!-- /gc-container --> |
634 </body></html> | 616 </body></html> |
OLD | NEW |