0

The PDF file forced to be opened in html5 which there is no print or download button. How could I save it to my local computer?

The viewer looks similar to this one https://mozilla.github.io/pdf.js/

Jason Aller
  • 3,475
  • 28
  • 40
  • 37
David Guo
  • 21
  • 1
  • 5

1 Answers1

1

Pdf.js documents can be downloaded by executing the following javascript from the browser search bar:

javascript:PDFViewerApplication.download()

Note that in order to execute javascript in the search, this feature must first be enabled:

  • In Safari, select "Allow Safari from Smart Search Field" in the Develop menu.
  • Chrome and FireFox users can follow these instructions to enable the feature.
daWaveman
  • 43
  • 7