Open
Description
See: https://bugzilla.mozilla.org/show_bug.cgi?id=844350
with the acrobat pdf plugin i can pass navpanes=0 and toolbar=0 to hide the toolbars
The parameters are specified here: http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_open_parameters_v9.pdf#page=7
Activity
jviereck commentedon Feb 23, 2013
Issue #2676 might serve as an starting point on how to implement this.
Snuffleupagus commentedon Feb 23, 2013
Should we implement the "navpanes" parameter?
In Adobe Reader the "navpanes" are separate from the toolbar, but in pdf.js these can't be acessed if the toolbar isn't visible. I suppose that you could just hide the sidebar button if "navpanes=0", but do we want to do that?
kekkc commentedon Feb 17, 2018
#9414 was closed with a reference to this issue, but I'm not sure if the parameters are the same as "auto-hide" toolbar. In case someone is searching for a workaround to gain space or some different ideas of implementation, create a userContent.css in profile>chrome with the following content (instead of hiding the toolbar completely, it's just made transparent:
churchianity commentedon Dec 25, 2022
I opened this: https://bugzilla.mozilla.org/show_bug.cgi?id=1807490
And was directed here - what's the status of the various unimplemented pdf parameters in pdf.js?
vitaly-zdanevich commentedon Nov 20, 2024
Thanks, but strange that
display: none
andopecity: ...
in one block?kekkc commentedon Nov 20, 2024
Corrected, just seen that the * were not displayed. Learned now that one can use triple ``` to insert code in comments that includes new line characters ;)
vitaly-zdanevich commentedon Nov 21, 2024
Improved - to reveal the UI on mouse hover:
kekkc commentedon Mar 12, 2025
@vitaly-zdanevich
almost missed this, pretty cool ;)