Index: chrome/common/extensions/docs/server2/templates/intros/debugger.html |
diff --git a/chrome/common/extensions/docs/server2/templates/intros/debugger.html b/chrome/common/extensions/docs/server2/templates/intros/debugger.html |
index 27a1d99543af100b1be951f3358a3609d25022d2..a815425d7dbf3ff947275f81e60bbf7105c4c3e5 100644 |
--- a/chrome/common/extensions/docs/server2/templates/intros/debugger.html |
+++ b/chrome/common/extensions/docs/server2/templates/intros/debugger.html |
@@ -1,5 +1,5 @@ |
-<!-- BEGIN AUTHORED CONTENT --> |
<h2 id="manifest">Notes</h2> |
+ |
<p> |
Debugger API serves as an alternate transport for Chrome's |
<a href="http://code.google.com/chrome/devtools/docs/remote-debugging.html"> |
@@ -8,17 +8,21 @@ to attach to one or more tabs to instrument network interaction, debug |
JavaScript, mutate the DOM and CSS, etc. Use the Debuggee tabId to target tabs |
with sendCommand and route events by <code>tabId</code> from onEvent callbacks. |
</p> |
+ |
<p> |
As of today, attaching to the tab by means of the debugger API |
and using embedded Chrome DevTools with that tab are mutually exclusive. |
If user invokes Chrome DevTools while extension is attached to the tab, |
debugging session is terminated. Extension can re-establish it later. |
</p> |
+ |
<h2 id="manifest">Manifest</h2> |
+ |
<p> |
You must declare the "debugger" permission in your extension's manifest |
to use this API. |
</p> |
+ |
<pre>{ |
"name": "My extension", |
... |
@@ -27,9 +31,11 @@ to use this API. |
]</b>, |
... |
}</pre> |
+ |
+ |
<h2 id="examples">Examples</h2> |
+ |
<p> |
You can find samples of this API in |
<a href="samples.html#debugger">Samples</a>. |
-</p> |
-<!-- END AUTHORED CONTENT --> |
+</p> |