summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/docs/helloworld.html
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/extensions/docs/helloworld.html')
-rwxr-xr-xchrome/common/extensions/docs/helloworld.html79
1 files changed, 61 insertions, 18 deletions
diff --git a/chrome/common/extensions/docs/helloworld.html b/chrome/common/extensions/docs/helloworld.html
index 61db8f3..af5471c 100755
--- a/chrome/common/extensions/docs/helloworld.html
+++ b/chrome/common/extensions/docs/helloworld.html
@@ -1,32 +1,66 @@
-<!DOCTYPE HTML>
-<html>
-<head>
-<meta charset="utf-8">
-<title>Extensions: Hello, World</title>
-<link href="stylesheet.css" rel="stylesheet" type="text/css">
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <title>Extensions: Getting Started</title>
+ <link href="css/ApiRefStyles.css" rel="stylesheet" type="text/css">
</head>
-
<body>
-<h1>Hello, World</h1>
-
-<p>
-This tutorial walks you through creating a simple extension.
-To complete this tutorial, you must have Windows;
-Linux and Mac don't yet support extensions.
-</p>
-<h4> Contents </h4>
+ <div id="container">
+ <a name="top"> </a>
-<ul>
+ <!-- API HEADER -->
+ <div id="pageHeader">
+ <!-- BREADCRUMB -->
+ <!-- TODO: Fix these hrefs -->
+ <div id="breadcrumbs">
+ <a href="./index.html">Google Chrome Extensions</a> &gt;
+ <a href="devguide.html">Developer's Guide</a> &gt;
+ Get Started (Hello, World!)
+ </div>
+ <div id="pageTitle">
+ <h1>Get Started (Hello, World!)
+ </div>
+ </div> <!-- /pageHeader -->
+
+ <div id="pageContent">
+ <!-- SIDENAV -->
+ <div id="leftNav">
+ <ul>
+ <li> Overview </li>
+ <li> Get Started </li>
+ <li> Developer's Guide </li>
+ <li> Reference
+ <ul>
+ <li> chrome.* APIs
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+
+ <div id="mainColumn">
+ <!-- TABLE OF CONTENTS -->
+ <div id="toc">
+ <p>Contents</p>
+<ol>
<li> <a href="#browser">Get your browser ready</a> </li>
<li> <a href="#load">Create and load an extension</a> </li>
<li> <a href="#code">Add code to the extension</a> </li>
<li> <a href="#debug">Debug the extension</a> </li>
<li> <a href="#summary">Summary</a> </li>
-</ul>
+</ol>
+ </div>
+ <!-- /TABLE OF CONTENTS -->
+
+
+ <!-- CONTENT -->
<p>
-[PENDING: automate the TOC; add navigation links to other pages]
+This tutorial walks you through creating a simple extension.
+To complete this tutorial, you must have Windows;
+Linux and Mac don't yet support extensions.
</p>
<h2 id="browser">Get your browser ready</h2>
@@ -299,5 +333,14 @@ what else we would've done if this were a real extension (e.g. package it),
and where to find more information.
Suggest where to go next.]</p>
+
+ </div> <!-- /mainColumn -->
+ </div> <!-- /pageContent -->
+ <div id="pageFooter" -->
+ Copyright 2009
+ <br />
+ TBD: copyright/license should be automatically included here
+ </div> <!-- /pageFooter -->
+ </div> <!-- /container -->
</body>
</html>