| OLD | NEW |
| 1 <div id="pageData-name" class="pageData">Other APIs</div> | 1 <div id="pageData-name" class="pageData">Other APIs</div> |
| 2 | 2 |
| 3 <p> | 3 <p> |
| 4 In addition to the | 4 In addition to the |
| 5 <a href="api_index.html">chrome.* APIs</a>, | 5 <a href="api_index.html">chrome.* APIs</a>, |
| 6 extensions can use all the APIs | 6 extensions can use all the APIs |
| 7 that the browser provides | 7 that the browser provides |
| 8 to web pages and apps. | 8 to web pages and apps. |
| 9 If the browser doesn't support an API you want to use, | 9 If the browser doesn't support an API you want to use, |
| 10 you can bundle additional API libraries into your extension. | 10 you can bundle additional API libraries into your extension. |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 </dd> | 31 </dd> |
| 32 <dt> <strong>HTML5 and other emerging APIs</strong></dt> | 32 <dt> <strong>HTML5 and other emerging APIs</strong></dt> |
| 33 <dd> Google Chrome supports HTML5 features, | 33 <dd> Google Chrome supports HTML5 features, |
| 34 along with other emerging APIs. | 34 along with other emerging APIs. |
| 35 Here are some of the APIs you can use: | 35 Here are some of the APIs you can use: |
| 36 <ul> | 36 <ul> |
| 37 <li> audio | 37 <li> audio |
| 38 (<a href="http://www.html5rocks.com/tutorials/audio/quick/">tutorial</a>) </
li> | 38 (<a href="http://www.html5rocks.com/tutorials/audio/quick/">tutorial</a>) </
li> |
| 39 <li> application cache | 39 <li> application cache |
| 40 (<a href="http://www.html5rocks.com/tutorials/appcache/beginner/">tutorial</
a>) </li> | 40 (<a href="http://www.html5rocks.com/tutorials/appcache/beginner/">tutorial</
a>) </li> |
| 41 <li> canvas </li> | 41 <li> canvas |
| 42 (<a href="http://www.html5rocks.com/en/tutorials/#canvas">articles</a>) </li
> |
| 42 <li> geolocation | 43 <li> geolocation |
| 43 (<a href="http://www.html5rocks.com/tutorials/geolocation/trip_meter/">tutor
ial</a>) </li> | 44 (<a href="http://www.html5rocks.com/tutorials/geolocation/trip_meter/">tutor
ial</a>) </li> |
| 44 <li> local storage </li> | 45 <li> local storage |
| 46 (<a href="http://www.html5rocks.com/en/tutorials/offline/storage/">tutorial<
/a>) </li> |
| 45 <li> notifications | 47 <li> notifications |
| 46 (<a href="http://www.html5rocks.com/tutorials/notifications/quick/">tutorial
</a>) </li> | 48 (<a href="http://www.html5rocks.com/tutorials/notifications/quick/">tutorial
</a>) </li> |
| 47 <li> session storage </li> | 49 <li> video |
| 48 <li> video </li> | 50 (<a href="http://www.html5rocks.com/en/tutorials/video/basics/">tutorial</a>
) </li> |
| 49 <li> web database | 51 <li> web database |
| 50 (<a href="http://www.html5rocks.com/tutorials/webdatabase/todo/">tutorial</a
>) </li> | 52 (<a href="http://www.html5rocks.com/tutorials/webdatabase/todo/">tutorial</a
>) </li> |
| 51 </ul> | 53 </ul> |
| 52 <p> | 54 <p> |
| 53 See <a href="http://www.html5rocks.com">html5rocks.com</a> | 55 See <a href="http://www.html5rocks.com">html5rocks.com</a> |
| 54 for HTML5 information, tutorials, an interactive playground, | 56 for HTML5 information, tutorials, an interactive playground, |
| 55 and links to other resources. | 57 and links to other resources. |
| 56 </p> | 58 </p> |
| 57 </dd> | 59 </dd> |
| 58 | 60 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 77 <dd> Because JSON is in V8, you don't need to include a JSON library to use JSON
functions. <!-- [PENDING: what other APIs are in v8? link to complete list] -->
</dd> | 79 <dd> Because JSON is in V8, you don't need to include a JSON library to use JSON
functions. <!-- [PENDING: what other APIs are in v8? link to complete list] -->
</dd> |
| 78 <dt><strong>APIs in bundled libraries</strong></dt> | 80 <dt><strong>APIs in bundled libraries</strong></dt> |
| 79 <dd> If you want to use a library that the browser doesn't provide | 81 <dd> If you want to use a library that the browser doesn't provide |
| 80 (for example, jQuery), | 82 (for example, jQuery), |
| 81 you can bundle that library's JavaScript files with your extension. | 83 you can bundle that library's JavaScript files with your extension. |
| 82 Bundled libraries work in extensions | 84 Bundled libraries work in extensions |
| 83 just as they do in other web pages. | 85 just as they do in other web pages. |
| 84 </dd> | 86 </dd> |
| 85 </dl> | 87 </dl> |
| 86 | 88 |
| OLD | NEW |