browserSettings.verticalTabs
A BrowserSetting
object that represents whether the browser has vertical tabs enabled. The object's underlying value is a boolean.
Examples
Set the setting to false
, reverting to horizontal tabs:
js
browser.browserSettings.verticalTabs
.set({ value: false })
.then((result) => console.log(`Tabs setting was modified: ${result}`));
Browser compatibility
Loading…