OLD | NEW |
1 <!-- BEGIN AUTHORED CONTENT --> | 1 <!-- BEGIN AUTHORED CONTENT --> |
2 <h2 id="manifest">Notes</h2> | 2 <h2 id="manifest">Notes</h2> |
3 <p> | 3 <p> |
4 Debugger API serves as an alternate transport for Chrome's | 4 Debugger API serves as an alternate transport for Chrome's |
5 <a href="http://code.google.com/chrome/devtools/docs/remote-debugging.html"> | 5 <a href="http://code.google.com/chrome/devtools/docs/remote-debugging.html"> |
6 remote debugging protocol</a>. Use <code>chrome.debugger</code> | 6 remote debugging protocol</a>. Use <code>chrome.debugger</code> |
7 to attach to one or more tabs to instrument network interaction, debug | 7 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 | 8 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. | 9 with sendCommand and route events by <code>tabId</code> from onEvent callbacks. |
10 </p> | 10 </p> |
(...skipping 15 matching lines...) Expand all Loading... |
26 "debugger", | 26 "debugger", |
27 ]</b>, | 27 ]</b>, |
28 ... | 28 ... |
29 }</pre> | 29 }</pre> |
30 <h2 id="examples">Examples</h2> | 30 <h2 id="examples">Examples</h2> |
31 <p> | 31 <p> |
32 You can find samples of this API in | 32 You can find samples of this API in |
33 <a href="samples.html#debugger">Samples</a>. | 33 <a href="samples.html#debugger">Samples</a>. |
34 </p> | 34 </p> |
35 <!-- END AUTHORED CONTENT --> | 35 <!-- END AUTHORED CONTENT --> |
OLD | NEW |