OLD | NEW |
1 <div id="pageData-title" 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. |
11 </p> | 11 </p> |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 localStorage.setItem("foo", "bar"); ... localStorage.getItem
("foo"); --> <!-- [PENDING: Other important API? link to complete list
] --></dd> | 56 localStorage.setItem("foo", "bar"); ... localStorage.getItem
("foo"); --> <!-- [PENDING: Other important API? link to complete list
] --></dd> |
57 <dt><strong>APIs in bundled libraries</strong></dt> | 57 <dt><strong>APIs in bundled libraries</strong></dt> |
58 <dd> If you want to use a library that the browser doesn't provide | 58 <dd> If you want to use a library that the browser doesn't provide |
59 (for example, jQuery), | 59 (for example, jQuery), |
60 you can bundle that library's JavaScript files with your extension. | 60 you can bundle that library's JavaScript files with your extension. |
61 Bundled libraries work in extensions | 61 Bundled libraries work in extensions |
62 just as they would in any other web pages. | 62 just as they would in any other web pages. |
63 </dd> | 63 </dd> |
64 </dl> | 64 </dl> |
65 | 65 |
OLD | NEW |