| OLD | NEW |
| 1 <p id="classSummary"> | 1 <p> |
| 2 Use the <code>chrome.devtools.network</code> module to retrieve | |
| 3 the information about network requests displayed by the Developer Tools | |
| 4 in the Network panel. | |
| 5 </p><p> | |
| 6 See <a href="devtools.html">DevTools APIs summary</a> for | 2 See <a href="devtools.html">DevTools APIs summary</a> for |
| 7 general introduction to using Developer Tools APIs</a>. | 3 general introduction to using Developer Tools APIs</a>. |
| 8 </p> | 4 </p> |
| 9 | 5 |
| 10 <h2 id="overview">Overview</h2> | 6 <h2 id="overview">Overview</h2> |
| 11 | 7 |
| 12 <p> | 8 <p> |
| 13 Network requests information is represented in the HTTP Archive format | 9 Network requests information is represented in the HTTP Archive format |
| 14 (<em>HAR</em>). The description of HAR is outside of scope of this document, | 10 (<em>HAR</em>). The description of HAR is outside of scope of this document, |
| 15 please refer to <a href= | 11 please refer to <a href= |
| (...skipping 28 matching lines...) Expand all Loading... |
| 44 chrome.experimental.devtools.console.addMessage( | 40 chrome.experimental.devtools.console.addMessage( |
| 45 chrome.experimental.devtools.console.Severity.Warning, | 41 chrome.experimental.devtools.console.Severity.Warning, |
| 46 "Large image: " + request.request.url); | 42 "Large image: " + request.request.url); |
| 47 }); | 43 }); |
| 48 </pre> | 44 </pre> |
| 49 | 45 |
| 50 <p> | 46 <p> |
| 51 You can find more examples that use this API in | 47 You can find more examples that use this API in |
| 52 <a href="samples.html#devtools.network">Samples</a>. | 48 <a href="samples.html#devtools.network">Samples</a>. |
| 53 </p> | 49 </p> |
| OLD | NEW |