Warning: This feature is a work in progress and may be incomplete or subject to change. If you see an error or something that could be improved, please make a pull-request. The link that documents this feature can be found at the bottom of the page.
Extension.js provides a unified API for interacting with the browser across different browsers. This API is based on the WebExtensions API and is supported by Chrome, Firefox, and Edge. By passing the --polyfill flag to the extension package in your npm script for dev, start, or build commands, Extension.js will automatically include necessary polyfills for handling the Gecko-specific browser.* API across all Chromium-based browsers.
This command ensures that the namespaced API calls are correctly polyfilled for each browser.
Note: By default, the
--polyfillflag is not applied when running--browser=firefoxor--browser=geckoas the polyfill is only necessary for Chromium-based browsers.
browser.* API, apply the --polyfill flag to ensure the API is correctly polyfilled for all Chromium-based browsers.browser.* API, check the compatibility of the API with the target browser to avoid any issues during the build process. A good place to start is the MDN Web Docs for the WebExtensions API.