Path: blob/main/files/en-us/mozilla/add-ons/webextensions/api/browseraction/seticon/index.md
6555 views
------{{AddonSidebar()}}
Sets the icon for the browser action.
You can specify a single icon as either the path to an image file or a {{WebExtAPIRef('browserAction.ImageDataType')}} object.
You can specify multiple icons in different sizes by supplying a dictionary containing multiple paths or ImageData objects. This means the icon doesn't have to be scaled for a device with a different pixel density.
Tabs without a specific icon will inherit the global icon, which defaults to the default_icon specified in the manifest.
This is an asynchronous function that returns a Promise.
Syntax
Parameters
details:
object. An object containing eitherimageDataorpathproperties, and optionally atabIdproperty.imageData{{optional_inline}}:
{{WebExtAPIRef('browserAction.ImageDataType')}}orobject. This is either a singleImageDataobject or a dictionary object.Use a dictionary object to specify multiple
ImageDataobjects in different sizes, so the icon does not have to be scaled for a device with a different pixel density. IfimageDatais a dictionary, the value of each property is anImageDataobject, and its name is its size, like this:The browser will choose the image to use depending on the screen's pixel density. See Choosing icon sizes for more information on this.
path{{optional_inline}}:
stringorobject. This is either a relative path to an icon file or it is a dictionary object.Use a dictionary object to specify multiple icon files in different sizes, so the icon does not have to be scaled for a device with a different pixel density. If
pathis a dictionary, the value of each property is a relative path, and its name is its size, like this:The browser will choose the image to use depending on the screen's pixel density. See Choosing icon sizes for more information on this.
tabId{{optional_inline}}:
integer. Sets the icon only for the given tab. The icon is reset when the user navigates this tab to a new page.
windowId{{optional_inline}}:
integer. Sets the icon for the given window.
If
windowIdandtabIdare both supplied, the function fails and the icon is not set.If
windowIdandtabIdare both omitted, the global icon is set.
If each one of imageData and path is one of undefined, null or empty object:
If
tabIdis specified, and the tab has a tab-specific icon set, then the tab will inherit the icon from the window to which it belongs.If
windowIdis specified, and the window has a window-specific icon set, then the window will inherit the global icon.Otherwise, the global icon will be reset to the manifest icon.
Return value
A Promise that will be fulfilled with no arguments once the icon has been set.
Browser compatibility
{{Compat}}
Examples
The code below uses a browser action to toggle a listener for {{WebExtAPIRef("webRequest.onHeadersReceived")}}, and uses setIcon() to indicate whether listening is on or off:
The code below sets the icon using an ImageData object:
The following snippet updates the icon when the user clicks it, but only for the active tab:
{{WebExtExamples}}
Note: This API is based on Chromium's
chrome.browserActionAPI. This documentation is derived frombrowser_action.jsonin the Chromium code.