Firefox 153 release notes for developers (Nightly)
This article provides information about the changes in Firefox 153 that affect developers. Firefox 153 is the current Nightly version of Firefox and ships on July 21, 2026.
Note: The release notes for this Firefox version are still a work in progress.
Changes for web developers
Changes for add-on developers
- Extensions now require explicit user permission to access
file://URLs. Previously, access to local files was covered by the "Access your data for all websites" host permission. This change introduces a separate "Access local files on your computer" option in the extension's permissions settings (desktop only), and file access is turned off by default for all extensions, including existing ones. Theextension.isAllowedFileSchemeAccess()method now correctly returnstrueif the user has granted file scheme access; previously, Firefox always returnedfalse. Additionally, callingdevtools.inspectedWindow.eval()onfile://URLs now requires this permission. (Firefox bug 2034168) - Supports the
userScripts.execute()method, enabling extensions to inject user scripts on demand into a tab or frame. UnlikeuserScripts.register(), this method supports one-off injection of multiple script sources executed in a defined order. (Firefox bug 1930776) - Adds the
publicSuffixAPI, enabling extensions to determine the registrable domain (eTLD+1) and public suffix of a hostname using the browser's built-in Public Suffix List. The API provides three synchronous methods:publicSuffix.isKnownSuffix(),publicSuffix.getKnownSuffix(), andpublicSuffix.getDomain(). (Firefox bug 1315558) - Extension content scripts can now read and modify constructed stylesheets in
document.adoptedStyleSheetsandShadowRoot.adoptedStyleSheets, without.wrappedJSObject. (Firefox bug 1751346) - Adds the
contextualIdentities.getSupportedColors()andcontextualIdentities.getSupportedIcons()methods to retrieve the colors and icons available for contextual identities (containers). (Firefox bug 2044712)
Experimental web features
These features are shipping in Firefox 153 but are disabled by default.
To experiment with them, search for the appropriate preference on the about:config page and set it to true.
You can find more such features on the Experimental features page.