summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/docs/static/background_pages.html
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/extensions/docs/static/background_pages.html')
-rwxr-xr-xchrome/common/extensions/docs/static/background_pages.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/extensions/docs/static/background_pages.html b/chrome/common/extensions/docs/static/background_pages.html
index 1d6d094..3d99295 100755
--- a/chrome/common/extensions/docs/static/background_pages.html
+++ b/chrome/common/extensions/docs/static/background_pages.html
@@ -1,4 +1,5 @@
-<!-- BEGIN AUTHORED CONTENT -->
+<div id="pageData-title" class="pageData">Background Pages</div>
+
<p>A common need for extensions is to have a single long-running script to manage some task or state. Toolstrips don't quite fit this need, because there can be multiple toolstrips active at any one time (one per browser window). Background pages to the rescue.</p>
<p>The background page is similar to a toolstrip, in that it is an HTML page that runs in the extension process. The difference is that the background page exists for the lifetime of your extension, and there is only one instance of it active at a time.</p>
@@ -37,4 +38,3 @@ toolstrip.html (snippet):
var elm = document.getElementById('checkbox');
elm.checked = checked;
}</pre>
-<!-- END AUTHORED CONTENT -->