pageAction.hide()
Hides the page action for a given tab.
hide()
overrides pattern matching, so the page action will not be shown in the specified tab even if its URL is matched by show_matches
.
Syntax
browser.pageAction.hide(
tabId // integer
)
Parameters
Browser compatibility
Report problems with this compatibility data on GitHubwebextensions-desktop | webextensions-mobile | |||||
---|---|---|---|---|---|---|
hide | ChromeFull supportYes | EdgeFull support14 | FirefoxFull support45 | OperaFull supportYes | SafariNo supportNo | Firefox for AndroidFull support50
|
Legend
- Full support
- Full support
- No support
- No support
- See implementation notes.
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Examples
Hide the page action for the current tab when the user clicks it:
browser.pageAction.onClicked.addListener((tab) => {
browser.pageAction.hide(tab.id);
});
Example extensions
Acknowledgements
This API is based on Chromium's chrome.pageAction
API. This documentation is derived from page_action.json
in the Chromium code.
Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.