A BrowserSetting
object whose underlying value is a boolean.
By default zoom applies to all the content of a web page. Using the
. This settings enables web extensions to control this setting and determine whether zoom is applied to the entire page or to text only.The settings are:
true
: zoom applies to all the content of a web page (default).false
: zoom applies to web page text only.
Browser compatibility
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
Desktop | Mobile | |||||
---|---|---|---|---|---|---|
zoomFullPage | Chrome No support No | Edge No support No | Firefox Full support 75 | Opera No support No | Safari No support No | Firefox Android No support No |
Legend
- Full support
- Full support
- No support
- No support
Examples
Set the setting to false
:
function logResult(result) { console.log(`Setting was modified: ${result}`); } browser.browserSettings.zoomFullPage.set({value: false}). then(logResult);