Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: chrome/common/extensions/docs/server2/templates/intros/debugger.html

Issue 10832042: Extensions Docs Server: Doc conversion script (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: script/build.py fixes Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!-- BEGIN AUTHORED CONTENT -->
2 <h2 id="manifest">Notes</h2> 1 <h2 id="manifest">Notes</h2>
3 <p> 2 <p>
4 Debugger API serves as an alternate transport for Chrome's 3 Debugger API serves as an alternate transport for Chrome's
5 <a href="http://code.google.com/chrome/devtools/docs/remote-debugging.html"> 4 <a href="http://code.google.com/chrome/devtools/docs/remote-debugging.html">
6 remote debugging protocol</a>. Use <code>chrome.debugger</code> 5 remote debugging protocol</a>. Use <code>chrome.debugger</code>
7 to attach to one or more tabs to instrument network interaction, debug 6 to attach to one or more tabs to instrument network interaction, debug
8 JavaScript, mutate the DOM and CSS, etc. Use the Debuggee tabId to target tabs 7 JavaScript, mutate the DOM and CSS, etc. Use the Debuggee tabId to target tabs
9 with sendCommand and route events by <code>tabId</code> from onEvent callbacks. 8 with sendCommand and route events by <code>tabId</code> from onEvent callbacks.
10 </p> 9 </p>
11 <p> 10 <p>
(...skipping 12 matching lines...) Expand all
24 ... 23 ...
25 <b> "permissions": [ 24 <b> "permissions": [
26 "debugger", 25 "debugger",
27 ]</b>, 26 ]</b>,
28 ... 27 ...
29 }</pre> 28 }</pre>
30 <h2 id="examples">Examples</h2> 29 <h2 id="examples">Examples</h2>
31 <p> 30 <p>
32 You can find samples of this API in 31 You can find samples of this API in
33 <a href="samples.html#debugger">Samples</a>. 32 <a href="samples.html#debugger">Samples</a>.
34 </p> 33 </p>
35 <!-- END AUTHORED CONTENT -->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698