2

Hello folk I just want to know is there a way for a chrome extension to access the print dialog created by the chrome browser using Ctrl + P command enter image description here

Janaravi
  • 125
  • 1
  • 1
  • 10

1 Answers1

0

In javascript, you may call the following function:

window.print();

You can learn more about it here.
This can be called in most browsers without special priveleges.

myjobistobehappy
  • 736
  • 5
  • 16