| OLD | NEW |
| 1 <p> | 1 <p> |
| 2 The following API modules provide support for extending | 2 The following API modules provide support for extending |
| 3 Chrome Developer Tools: | 3 Chrome Developer Tools: |
| 4 </p> | 4 </p> |
| 5 | |
| 6 <a name="api-list"></a> | 5 <a name="api-list"></a> |
| 7 <ul> | 6 <ul> |
| 8 <li> | 7 <li> |
| 9 <a href="devtools.inspectedWindow.html">devtools.inspectedWindow</a></li><li> | 8 <a href="devtools.inspectedWindow.html">devtools.inspectedWindow</a></li><li> |
| 10 <a href="devtools.network.html">devtools.network</a></li><li> | 9 <a href="devtools.network.html">devtools.network</a></li><li> |
| 11 <a href="devtools.panels.html">devtools.panels</a></li> | 10 <a href="devtools.panels.html">devtools.panels</a></li> |
| 12 </ul> | 11 </ul> |
| 13 | |
| 14 <h2 id="using">How to use DevTools APIs</h2> | 12 <h2 id="using">How to use DevTools APIs</h2> |
| 15 | |
| 16 <ol> | 13 <ol> |
| 17 <li> | 14 <li> |
| 18 Specify the "devtools_page" field in your extension's manifest: | 15 Specify the "devtools_page" field in your extension's manifest: |
| 19 <pre>{ | 16 <pre>{ |
| 20 "name": ... | 17 "name": ... |
| 21 "version": "1.0", | 18 "version": "1.0", |
| 22 "minimum_chrome_version": "10.0", | 19 "minimum_chrome_version": "10.0", |
| 23 <b>"devtools_page": "devtools.html"</b>, | 20 <b>"devtools_page": "devtools.html"</b>, |
| 24 ... | 21 ... |
| 25 } | 22 } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 48 </li><li> | 45 </li><li> |
| 49 There are also some Developer Tools APIs that are still experimental. | 46 There are also some Developer Tools APIs that are still experimental. |
| 50 Please refer to <a href="experimental.html">chrome.experimental.* APIs</a> | 47 Please refer to <a href="experimental.html">chrome.experimental.* APIs</a> |
| 51 for the list of experimental APIs and guidelines on how to use them. | 48 for the list of experimental APIs and guidelines on how to use them. |
| 52 </li> | 49 </li> |
| 53 <li> | 50 <li> |
| 54 <a href="http://groups.google.com/group/google-chrome-developer-tools/topics
">Give us feedback!</a> | 51 <a href="http://groups.google.com/group/google-chrome-developer-tools/topics
">Give us feedback!</a> |
| 55 Your comments and suggestions help us improve the APIs. | 52 Your comments and suggestions help us improve the APIs. |
| 56 </li> | 53 </li> |
| 57 </ol> | 54 </ol> |
| 58 | |
| 59 <h2 id="other">More information</h2> | 55 <h2 id="other">More information</h2> |
| 60 | |
| 61 <p> | 56 <p> |
| 62 For information on the standard APIs that extensions can use, see | 57 For information on the standard APIs that extensions can use, see |
| 63 <a href="api_index.html">chrome.* APIs</a> and | 58 <a href="api_index.html">chrome.* APIs</a> and |
| 64 <a href="api_other.html">Other APIs</a>. | 59 <a href="api_other.html">Other APIs</a>. |
| 65 </p> | 60 </p> |
| 66 | |
| 67 <h2 id="examples">Examples</h2> | 61 <h2 id="examples">Examples</h2> |
| 68 | |
| 69 <p> | 62 <p> |
| 70 You can find examples that use Developer Tools APIs in | 63 You can find examples that use Developer Tools APIs in |
| 71 <a href="samples.html#devtools">Samples</a>. | 64 <a href="samples.html#devtools">Samples</a>. |
| 72 </p> | 65 </p> |
| OLD | NEW |