pageAction.show()
Shows the {{WebExtAPIRef("pageAction")}} for a given {{WebExtAPIRef("tabs/Tab", "tab")}} . The page action is shown whenever the given tab is the active tab.
show() overrides pattern matching, so the page action will be shown in the specified tab even if show_matches does not match the URL or hide_matches does.
Note that calling show() has no effect on a tab with no content loaded.
Syntax
browser.pageAction.show(
tabId // integer
)
Parameters
tabId- :
integer. The ID of the{{WebExtAPIRef("tabs/Tab", "tab")}}for which you want to show the page action.
- :
Return value
A Promise that will be fulfilled with undefined.
Examples
This example shows the {{WebExtAPIRef("pageAction")}} for the active tab when the user selects a context menu item.
[!NOTE] You’ll need the
contextMenuspermission in your manifest to create context menu items.
browser.contextMenus.create({
id: "show",
title: "Show page action",
});
browser.contextMenus.onClicked.addListener((info, tab) => {
if (info.menuItemId === "show") {
browser.pageAction.show(tab.id);
}
});
{{WebExtExamples}}
Browser compatibility
{{Compat}}
[!NOTE] This API is based on Chromium’s
chrome.pageActionAPI. This documentation is derived frompage_action.jsonin the Chromium code.