Reputation: 1
I have a Firefox Addon with bellow funtions:
Now I need covert it to WebExtension for run with new FireFox (version 60 or higher). Could you help me find extension API for above funtion
Upvotes: 0
Views: 200
Reputation: 3704
The current API allows only to print and print preview tabs, without settings:
browser.tabs.print() // will print the current tab
browser.tabs.printPreview() // will print preview the current tab
An API with more options is being worked on, see https://bugzilla.mozilla.org/show_bug.cgi?id=1385827
Upvotes: 1