Get to know MDN better
JavaScript APIs for WebExtensions can be used inside the extension's background scripts and in any other documents bundled with the extension, including browser action or page action popups, sidebars, options pages, or new tab pages. A few of these APIs can also be accessed by an extension's content scripts. (See the list in the content script guide.)
To use the more powerful APIs, you need to request permission in your extension's manifest.json.
You can access the APIs using the browser namespace:
Many of the APIs are asynchronous, returning a Promise:
Note that this is different from Google Chrome's extension system, which uses the chrome namespace instead of browser, and which uses callbacks instead of promises for asynchronous functions in Manifest V2. As a porting aid, the Firefox implementation of WebExtensions APIs supports chrome and callbacks as well as browser and promises. Mozilla has also written a polyfill which enables code that uses browser and promises to work unchanged in Chrome: https://github.com/mozilla/webextension-polyfill.
Firefox also implements these APIs under the chrome namespace using callbacks. This allows code written for Chrome to run largely unchanged in Firefox for the APIs documented here.
Not all browsers support all the APIs: for the details, see Browser support for JavaScript APIs and Chrome incompatibilities.
Throughout the JavaScript API listings, short code examples illustrate how the API is used. You can experiment with most of these examples using the console in the Toolbox. However, you need Toolbox running in the context of a web extension. To do this, open about:debugging then This Firefox, click Inspect against any installed or temporary extension, and open Console. You can then paste and run the example code in the console.
For example, here is the first code example on this page running in the Toolbox console in Firefox Developer Edition:
See below for a complete list of JavaScript APIs:
actionRead and modify attributes of and listen to clicks on the browser toolbar button defined with the action manifest key.
alarmsSchedule code to run at a specific time in the future. This is like Window.setTimeout() and Window.setInterval(), except that those functions don't work with background pages that are loaded on demand.
bookmarksThe WebExtensions bookmarks API lets an extension interact with and manipulate the browser's bookmarking system. You can use it to bookmark pages, retrieve existing bookmarks, and edit, remove, and organize bookmarks.
browserActionRead and modify attributes of and listen to clicks on the browser toolbar button defined with the browser_action manifest key.
browserSettingsEnables an extension to modify certain global browser settings. Each property of this API is a types.BrowserSetting object, providing the ability to modify a particular setting.
browsingDataEnables extensions to clear the data that is accumulated while the user is browsing.
captivePortalDetermine the captive portal state of the user's connection. A captive portal is a web page displayed when a user first connects to a Wi-Fi network. The user provides information or acts on the captive portal web page to gain broader access to network resources, such as accepting terms and conditions or making a payment.
clipboardThe WebExtension clipboard API (which is different from the standard Clipboard API) enables an extension to copy items to the system clipboard. Currently the WebExtension clipboard API only supports copying images, but it's intended to support copying text and HTML in the future.
commandsListens for the user executing commands registered using the commands manifest.json key.
contentScriptsUse this API to register content scripts. Registering a content script instructs the browser to insert the given content scripts into pages that match the given URL patterns.
contextualIdentitiesWork with contextual identities: list, create, remove, and update contextual identities.
cookiesEnables extensions to get, set, and remove cookies, and be notified when they change.
declarativeNetRequestThis API enables extensions to specify conditions and actions that describe how network requests should be handled. These declarative rules enable the browser to evaluate and modify network requests without notifying extensions about individual network requests.
devtoolsEnables extensions to interact with the browser's Developer Tools. You use this API to create Developer Tools pages, interact with the window that is being inspected, inspect the page network usage.
dnsEnables an extension to resolve domain names.
domAccess special extension only DOM features.
downloadsEnables extensions to interact with the browser's download manager. You can use this API module to download files, cancel, pause, resume downloads, and show downloaded files in the file manager.
eventsCommon types used by APIs that dispatch events.
extensionUtilities related to your extension. Get URLs to resources packages with your extension. Get the Window object for your extension's pages. Get the values for various settings.
extensionTypesSome common types used in other WebExtension APIs.
findFinds text in a web page, and highlights matches.
historyUse the history API to interact with the browser history.
i18nFunctions to internationalize your extension. You can use these APIs to get localized strings from locale files packaged with your extension, find out the browser's current language, and find out the value of its Accept-Language header.
identityUse the identity API to get an OAuth2 authorization code or access token, which an extension can then use to access user data from a service that supports OAuth2 access (such as Google or Facebook).
idleFind out when the user's system is idle, locked, or active.
managementGet information about installed add-ons.
menusAdd items to the browser's menu system.
notificationsDisplay notifications to the user, using the underlying operating system's notification mechanism. Because this API uses the operating system's notification mechanism, the details of how notifications appear and behave may differ according to the operating system and the user's settings.
omniboxEnables extensions to implement customized behavior when the user types into the browser's address bar.
pageActionRead and modify attributes of and listen to clicks on the address bar button defined with the page_action manifest key.
permissionsEnables extensions to request extra permissions at runtime, after they have been installed.
pkcs11The pkcs11 API enables an extension to enumerate PKCS #11 security modules and to make them accessible to the browser as sources of keys and certificates.
privacyAccess and modify various privacy-related browser settings.
proxyUse the proxy API to proxy web requests. You can use the proxy.onRequest event listener to intercept web requests, and return an object that describes whether and how to proxy them.
runtimeThis module provides information about your extension and the environment it's running in.
scriptingInserts JavaScript and CSS into websites. This API offers two approaches to inserting content:
searchUse the search API to retrieve the installed search engines and execute searches.
sessionsUse the sessions API to list, and restore, tabs and windows that have been closed while the browser has been running.
sidebarActionGets and sets properties of an extension's sidebar.
storageEnables extensions to store and retrieve data, and listen for changes to stored items.
tabGroupsThis API enables extensions to modify and rearrange tab groups.
tabsInteract with the browser's tab system.
themeEnables browser extensions to get details of the browser's theme and update the theme.
topSitesUse the topSites API to get an array containing pages that the user has visited frequently.
typesDefines the BrowserSetting type, which is used to represent a browser setting.
userScriptsUse this API to register user scripts, third-party scripts designed to manipulate webpages or provide new features. Registering a user script instructs the browser to attach the script to pages that match the URL patterns specified during registration.
userScripts (Legacy)Warning: This is documentation for the legacy userScripts API. It's available in Firefox for Manifest V2. For functionality to work with user scripts in Manifest V3 see the new userScripts API.
Add event listeners for the various stages of a navigation. A navigation consists of a frame in the browser transitioning from one URL to another, usually (but not always) in response to a user action like clicking a link or entering a URL in the location bar.
webRequestAdd event listeners for the various stages of making an HTTP request, which includes websocket requests on ws:// and wss://. The event listener receives detailed information about the request and can modify or cancel the request.
windowsInteract with browser windows. You can use this API to get information about open windows and to open, modify, and close windows. You can also listen for window open, close, and activate events.
This page was last modified on Jul 17, 2025 by MDN contributors.
Your blueprint for a better internet.
Visit Mozilla Corporation’s not-for-profit parent, the Mozilla Foundation.
Portions of this content are ©1998–2026 by individual mozilla.org contributors. Content available under a Creative Commons license.