Skip to content

Latest commit

 

History

History
628 lines (354 loc) · 15 KB

browserAction.rst

File metadata and controls

628 lines (354 loc) · 15 KB

browserAction

The browserAction and composeAction APIs first appeared in Thunderbird 64. They are very similar to Firefox's browserAction API.

Many of our sample extensions use a browserAction.

Use a browserAction to put an icon in the mail window toolbar. In addition to its icon, a browserAction can also have a tooltip, a badge, and a popup. This namespace is called browserAction for compatibility with browser WebExtensions.

api-main-section

Manifest file properties

Currently unused.

Specifies icons to use for dark and light themes

api-permission-info

Note

A manifest entry named browser_action is required to use browserAction.

api-main-section

Functions

setTitle(details)

Sets the title of the browserAction. This shows up in the tooltip and the label. Defaults to the add-on name.

The string the browserAction should display as its label and when moused over.

getTitle(details)

Gets the title of the browserAction.

setLabel(details)

-- [Added in TB 84.0b3, backported to TB 78.6.1]

Sets the label of the browserAction, defaults to its title. Can be set to an empty string to not display any label. If the containing toolbar is configured to display text only, the title will be used as fallback.

The string the browserAction should use as label. Can be set to an empty string to not display any label. If the containing toolbar is configured to display text only, the title will be used as fallback.

getLabel(details)

-- [Added in TB 84.0b3, backported to TB 78.6.1]

Gets the label of the browserAction.

setIcon(details)

Sets the icon for the browserAction. The icon can be specified either as the path to an image file or as the pixel data from a canvas element, or as dictionary of either one of those. Either the path or the imageData property must be specified.

Either an ImageData object or a dictionary {size -> ImageData} representing the icon to be set. If the icon is specified as a dictionary, the actual image to be used is chosen depending on screen's pixel density. If the number of image pixels that fit into one screen space unit equals scale, then image with size scale * 19 will be selected. Initially only scales 1 and 2 will be supported. At least one image must be specified. Note that details.imageData = foo is equivalent to details.imageData = {'19': foo}

Either a relative image path or a dictionary {size -> relative image path} pointing to icon to be set. If the icon is specified as a dictionary, the actual image to be used is chosen depending on screen's pixel density. If the number of image pixels that fit into one screen space unit equals scale, then image with size scale * 19 will be selected. Initially only scales 1 and 2 will be supported. At least one image must be specified. Note that details.path = foo is equivalent to details.path = {'19': foo}

setPopup(details)

Sets the html document to be opened as a popup when the user clicks on the browserAction's icon.

The html file to show in a popup. If set to the empty string (''), no popup is shown.

getPopup(details)

Gets the html document set as the popup for this browserAction.

setBadgeText(details)

Sets the badge text for the browserAction. The badge is displayed on top of the icon.

Any number of characters can be passed, but only about four can fit in the space.

getBadgeText(details)

Gets the badge text of the browserAction. If no tab nor window is specified, the global badge text is returned.

setBadgeBackgroundColor(details)

Sets the background color for the badge.

An array of four integers in the range [0,255] that make up the RGBA color of the badge. For example, opaque red is [255, 0, 0, 255]. Can also be a string with a CSS value, with opaque red being #FF0000 or #F00.

getBadgeBackgroundColor(details)

Gets the background color of the browserAction.

enable([tabId])

Enables the browserAction for a tab. By default, a browserAction is enabled.

The id of the tab for which you want to modify the browserAction.

disable([tabId])

Disables the browserAction for a tab.

The id of the tab for which you want to modify the browserAction.

isEnabled(details)

Checks whether the browserAction is enabled.

openPopup()

Opens the extension popup window in the active window.

api-main-section

Events

onClicked(tab, [info])

Fired when a browserAction icon is clicked. This event will not fire if the browserAction has a popup. This is a user input event handler. For asynchronous listeners some restrictions apply.

api-main-section

Types

ColorArray

An array of four integers in the range [0,255] that make up the RGBA color. For example, opaque red is [255, 0, 0, 255].

Details

Specifies to which tab or window the value should be set, or from which one it should be retrieved. If no tab nor window is specified, the global value is set or retrieved.

When setting a value, it will be specific to the specified tab, and will automatically reset when the tab navigates. When getting, specifies the tab to get the value from; if there is no tab-specific value, the window one will be inherited.

When setting a value, it will be specific to the specified window. When getting, specifies the window to get the value from; if there is no window-specific value, the global one will be inherited.

ImageDataType

Pixel data for an image. Must be an ImageData object (for example, from a canvas element).

OnClickData

-- [Added in TB 74.0b2]

Information sent when a browser action is clicked.

An array of keyboard modifiers that were held while the menu item was clicked.

Supported values:

Only available on macOS.

Not available on macOS.

Only available on macOS, but of limited use in a click event: Holding down the CTRL key while clicking with the mouse is referred to as a 'CTRL click' under macOS and is interpreted as a right mouse click. In a default profile the dom.event.treat_ctrl_click_as_right_click.disabled preference is not enabled and the MacCtrl modifier key is not forwarded to the API.

An integer value of button by which menu item was clicked.

api-main-section

External Types

The following types are not defined by this API, but by the underlying Mozilla WebExtension code base. They are included here, because there is no other public documentation available.

ThemeIcons

Define a set of icons for themes depending on whether Thunderbird detects that the theme uses dark or light text. All provided URLs must be relative to the manifest.json file.

A URL pointing to an icon. This icon displays when a theme using dark text is active (such as the Light theme, and the Default theme if no default_icon is specified).

A URL pointing to an icon. This icon displays when a theme using light text is active (such as the Dark theme).

The size of the two icons in pixels, for example 16 or 32.