Back to Content

browserSettings.verticalTabs

files/en-us/mozilla/add-ons/webextensions/api/browsersettings/verticaltabs/index.md

latest451 B
Original Source

A {{WebExtAPIRef("types.BrowserSetting", "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}`));

{{WebExtExamples}}

Browser compatibility

{{Compat}}