Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 3.0 License, and code samples are licensed under the BSD License.
©2009 Google
Google Chrome provides APIs such as
chrome.bookmarks
and chrome.tab
so that extensions can interact with the browser.
Here are the supported chrome.* APIs:
Unless the doc says otherwise, methods in the chrome.* APIs are asynchronous: they return immediately, without waiting for the operation to finish. If you need to know the outcome of an operation, then you pass a callback function into the method. For more information, see the video Extension API Design.