This page is part of the documentation for the Chrome Apps platform, which was deprecated in 2020. Chrome Apps in Kiosk Mode used by Enterprise and Education customers will no longer be supported after April 2027, marking their end of life. Additionally, all remaining Chrome Apps used in managed environments by Enterprise and Education organizations will reach their end of life in October 2028. Learn more about migrating your app.

Web APIs

In addition to the chrome.* APIs, extensions can use all the APIs that the browser provides to web pages and apps. If the browser doesn't support an API you want to use, you can bundle additional API libraries into your extension.

Here's a sampling of the APIs that extensions can use:

Standard JavaScript APIs
These are the same core JavaScript and Document Object Model (DOM) APIs that you can use in ordinary web apps.
XMLHttpRequest
Use XMLHttpRequest to request data from one or more servers. The permissions field of the manifest specifies which hosts the extension can send requests to.
HTML and other emerging APIs

Google Chrome supports modern HTML features, along with other emerging APIs. Here are some of the APIs you can use:

  • audio (tutorial)
  • application cache (tutorial)
  • canvas (articles)
  • fullscreen (article)
  • In Chrome Apps, fullscreen is entered without prompting the user or providing exit instructions. HTML5 fullscreen requires the app.window.fullscreen permission in the manifest. In normal webpages, the browser intercepts the ESC key to exit pointer lock ensuring a consistent escape method for users. That is also the behavior in Chrome Apps unless the app.window.fullscreen.overrideEsc permission is used to enable the app to call preventDefault on keydown and keyup events.
  • geolocation (tutorial)
  • local storage (tutorial)
  • notifications (tutorial)
  • pointer lock (tutorial)
  • In Chrome Apps, pointer lock is entered without requiring a user gesture, prompting the user, or providing exit instructions. Pointer lock requires the pointerlock permission in the manifest. Also, there is no default exit behavior. In normal webpages, the browser intercepts the ESC key to exit pointer lock. This behavior is not present in Chrome Apps.
  • video (tutorial)
  • web database (tutorial)

See html5rocks.com for HTML5 information, tutorials, an interactive playground, and links to other resources.

Web APIs

Your extension can use Web APIs. Especially useful are the CSS features such as filters, animations, and transformations. Here's an example of using WebKit styles to make the UI spin:

<style>
 div:hover {
 transform: rotate(360deg);
 transition: all 1s ease-out;
 }
</style>
V8 APIs, such as JSON

Because JSON is in V8, you don't need to include a JSON library to use JSON functions.

APIs in bundled libraries

If you want to use a library that the browser doesn't provide (for example, jQuery), you can bundle that library's JavaScript files with your extension. Bundled libraries work in extensions just as they do in other web pages.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2012年09月17日 UTC.