| OLD | NEW |
| 1 <p> | 1 <p> |
| 2 See <a href="devtools">DevTools APIs summary</a> for | 2 See <a href="devtools">DevTools APIs summary</a> for |
| 3 general introduction to using Developer Tools APIs</a>. | 3 general introduction to using Developer Tools APIs</a>. |
| 4 </p> | 4 </p> |
| 5 | 5 |
| 6 <h2 id="overview">Overview</h2> | 6 <h2 id="overview">Overview</h2> |
| 7 | 7 |
| 8 <p> | 8 <p> |
| 9 Network requests information is represented in the HTTP Archive format | 9 Network requests information is represented in the HTTP Archive format |
| 10 (<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, |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 function(request) { | 38 function(request) { |
| 39 if (request.response.bodySize > 40*1024) | 39 if (request.response.bodySize > 40*1024) |
| 40 chrome.experimental.devtools.console.addMessage( | 40 chrome.experimental.devtools.console.addMessage( |
| 41 chrome.experimental.devtools.console.Severity.Warning, | 41 chrome.experimental.devtools.console.Severity.Warning, |
| 42 "Large image: " + request.request.url); | 42 "Large image: " + request.request.url); |
| 43 }); | 43 }); |
| 44 </pre> | 44 </pre> |
| 45 | 45 |
| 46 <p> | 46 <p> |
| 47 You can find more examples that use this API in | 47 You can find more examples that use this API in |
| 48 <a href="samples#devtools.network">Samples</a>. | 48 <a href="samples#search:devtools.network">Samples</a>. |
| 49 </p> | 49 </p> |
| OLD | NEW |