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

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:

browser.browserAction.onClicked.addListener(() => {
  browser.tabs.print();
});

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
print
No
No
56
?
No
No
?
?
No
?
?
?

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/tabs/print