Skip to content

API > wxt > ExtensionRunnerConfig

Interface: ExtensionRunnerConfig

Configure how the browser starts up.

Contents

Properties

binaries

binaries?: Record<string, string>

List of browser names and the binary that should be used to open the browser.

See

Source

packages/wxt/src/types/index.ts:878


chromiumArgs

chromiumArgs?: string[]

See

https://extensionworkshop.com/documentation/develop/web-ext-command-reference/#args

Source

packages/wxt/src/types/index.ts:925


chromiumPref

chromiumPref?: string

An map of chrome preferences from https://chromium.googlesource.com/chromium/src/+/main/chrome/common/pref_names.h

Example

ts
// change your downloads directory
{
  download: {
    default_directory: "/my/custom/dir",
  },
}

Default

ts
// Enable dev mode and allow content script sourcemaps
{
  devtools: {
    synced_preferences_sync_disabled: {
      skipContentScripts: false,
    },
  }
  extensions: {
    ui: {
      developer_mode: true,
    },
  }
}

Source

packages/wxt/src/types/index.ts:913


chromiumProfile

chromiumProfile?: string

See

https://extensionworkshop.com/documentation/develop/web-ext-command-reference/#chromium-profile

Source

packages/wxt/src/types/index.ts:886


disabled

disabled?: boolean

Whether or not to open the browser with the extension installed in dev mode.

Default

ts
false

Source

packages/wxt/src/types/index.ts:863


firefoxArgs

firefoxArgs?: string[]

See

https://extensionworkshop.com/documentation/develop/web-ext-command-reference/#args

Source

packages/wxt/src/types/index.ts:921


firefoxPrefs

firefoxPrefs?: Record<string, string>

See

https://extensionworkshop.com/documentation/develop/web-ext-command-reference/#pref

Source

packages/wxt/src/types/index.ts:917


firefoxProfile

firefoxProfile?: string

See

https://extensionworkshop.com/documentation/develop/web-ext-command-reference/#firefox-profile

Source

packages/wxt/src/types/index.ts:882


keepProfileChanges

keepProfileChanges?: boolean

See

https://extensionworkshop.com/documentation/develop/web-ext-command-reference/#keep-profile-changes

Source

packages/wxt/src/types/index.ts:933


openConsole

openConsole?: boolean

See

https://extensionworkshop.com/documentation/develop/web-ext-command-reference/#browser-console

Source

packages/wxt/src/types/index.ts:867


openDevtools

openDevtools?: boolean

See

https://extensionworkshop.com/documentation/develop/web-ext-command-reference/#devtools

Source

packages/wxt/src/types/index.ts:871


startUrls

startUrls?: string[]

See

https://extensionworkshop.com/documentation/develop/web-ext-command-reference/#start-url

Source

packages/wxt/src/types/index.ts:929


Generated using typedoc-plugin-markdown and TypeDoc