diff options
author | kathyw@google.com <kathyw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-27 20:20:13 +0000 |
---|---|---|
committer | kathyw@google.com <kathyw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-27 20:20:13 +0000 |
commit | b3a9433df3d904e56410ef2878ea7364c6b28a70 (patch) | |
tree | 8ab696c9d4dcf0f63b926f429e3706fe977411bb /chrome/common/extensions/docs/static/background_pages.html | |
parent | 202bb6442ab506e2c156fb7d04e82a0151d6e16f (diff) | |
download | chromium_src-b3a9433df3d904e56410ef2878ea7364c6b28a70.zip chromium_src-b3a9433df3d904e56410ef2878ea7364c6b28a70.tar.gz chromium_src-b3a9433df3d904e56410ef2878ea7364c6b28a70.tar.bz2 |
Miscellaneous doc changes, nothing earthshaking.
TBR=aa,rafaelw
Review URL: http://codereview.chromium.org/173586
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24652 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/docs/static/background_pages.html')
-rwxr-xr-x | chrome/common/extensions/docs/static/background_pages.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/common/extensions/docs/static/background_pages.html b/chrome/common/extensions/docs/static/background_pages.html index b412635..79ec203 100755 --- a/chrome/common/extensions/docs/static/background_pages.html +++ b/chrome/common/extensions/docs/static/background_pages.html @@ -1,4 +1,5 @@ <div id="pageData-title" class="pageData">Background Pages</div> +<div id="pageData-showTOC" class="pageData">true</div> <p> A common need for extensions is to have @@ -16,7 +17,7 @@ The difference is that the background page exists for the lifetime of your extension, and only one instance of it at a time is active.</p> -<h2>Details</h2> +<h2 id="manifest">Manifest</h2> <p> Register your background page in the extension manifest, like this: @@ -26,10 +27,12 @@ Register your background page in the extension manifest, like this: "name": "My First Extension", "version": "1.0", "description": "The first extension that I made.", - "background_page": "background.html", + <b>"background_page": "background.html",</b> "toolstrips": ["toolstrip.html"] }</pre> +<h2>Details</h2> + <p> Your toolstrip will likely contain only the necessary code to display the toolstrip UI, |