tabs.print()
Call this function to print the contents of the active tab. If this function is called, the user will be presented with the print dialog from the underlying platform, and will have the chance to change the print settings and then print the currently active tab.
Syntax
js
browser.tabs.print()
Parameters
None.
Return value
None.
Examples
In this example a background script listens for a click on a browser action, then tries to print the currently active tab:
js
browser.browserAction.onClicked.addListener(() => {
browser.tabs.print();
});
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | ||||||
---|---|---|---|---|---|---|---|
print |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- No support
- No support
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.