| OLD | NEW |
| 1 <!-- BEGIN AUTHORED CONTENT --> | |
| 2 | |
| 3 <h2 id="manifest">Notes</h2> | 1 <h2 id="manifest">Notes</h2> |
| 4 | 2 |
| 5 <p> | 3 <p> |
| 6 Debugger API serves as an alternate transport for Chrome's | 4 Debugger API serves as an alternate transport for Chrome's |
| 7 <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"> |
| 8 remote debugging protocol</a>. Use <code>chrome.debugger</code> | 6 remote debugging protocol</a>. Use <code>chrome.debugger</code> |
| 9 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 |
| 10 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 |
| 11 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. |
| 12 </p> | 10 </p> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 33 ]</b>, | 31 ]</b>, |
| 34 ... | 32 ... |
| 35 }</pre> | 33 }</pre> |
| 36 | 34 |
| 37 | 35 |
| 38 <h2 id="examples">Examples</h2> | 36 <h2 id="examples">Examples</h2> |
| 39 | 37 |
| 40 <p> | 38 <p> |
| 41 You can find samples of this API in | 39 You can find samples of this API in |
| 42 <a href="samples.html#debugger">Samples</a>. | 40 <a href="samples.html#debugger">Samples</a>. |
| 43 </p> | 41 </p> |
| 44 | |
| 45 <!-- END AUTHORED CONTENT --> | |
| OLD | NEW |