A BrowserSetting
object whose underlying value is a boolean.
By default zoom applies to all the content of a web page. Using the Zoom Text Only setting users can choose to zoom only the text on a page. 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.Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
zoomFullPage |
No |
No |
75 |
? |
No |
No |
? |
? |
No |
? |
? |
? |
Set the setting to false
:
function logResult(result) { console.log(`Setting was modified: ${result}`); } browser.browserSettings.zoomFullPage.set({value: false}). then(logResult);
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/browserSettings/zoomFullPage