Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Μάθετε περισσότερα

shortcut-option for open firefox with no navigation-bar

  • 2 απαντήσεις
  • 1 έχει αυτό το πρόβλημα
  • 26 προβολές
  • Τελευταία απάντηση από lionel.nguyen1812

more options

I'm using firefox in my linux-distro (slackware), and using it as default pdf viewer. So i'm finding a way to open my pdf file by firefox with no navigation-toolbar.

As i known, application have options when run it, so is there a run option like `firefox -nonagigation` for firefox ?

I'm using firefox in my linux-distro (slackware), and using it as default pdf viewer. So i'm finding a way to open my pdf file by firefox with no navigation-toolbar. As i known, application have options when run it, so is there a run option like `firefox -nonagigation` for firefox ?

Επιλεγμένη λύση

There's no such command line option.

Use one of the following styles in Stylish (but not both).

The first one hides the navigation toolbar when viewing local PDFs only, while the second does the same for all PDFs.


@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#main-window[stylish-url^="file:///"][stylish-domain="pdf.js"] #nav-bar {
  visibility: collapse !important;
}

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#main-window[stylish-url$=".pdf"] #nav-bar {
  visibility: collapse !important;
}

Ανάγνωση απάντησης σε πλαίσιο 👍 1

Όλες οι απαντήσεις (2)

more options

Επιλεγμένη λύση

There's no such command line option.

Use one of the following styles in Stylish (but not both).

The first one hides the navigation toolbar when viewing local PDFs only, while the second does the same for all PDFs.


@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#main-window[stylish-url^="file:///"][stylish-domain="pdf.js"] #nav-bar {
  visibility: collapse !important;
}

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#main-window[stylish-url$=".pdf"] #nav-bar {
  visibility: collapse !important;
}

more options

many thanks @Gingerbread Man, your approach very helpfull for me.