Fungovanie tejto stránky je z dôvodu údržby dočasne obmedzené. Ak článok nevyrieši váš problém a chcete položiť otázku, napíšte našej komunite podpory na Twitter @FirefoxSupport alebo Reddit /r/firefox.

Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Ďalšie informácie

How do I extend the depth of the links in the "back" button?

  • 3 odpovede
  • 2 majú tento problém
  • 10 zobrazení
  • Posledná odpoveď od cor-el

more options

I needed to access the initial webpage URL of a site I was exploring. I had hundreds of URLs from this site and could not find the link in my history.

I naturally used the "back" button, but realized it only went back 10 links. Is there a way to increase the number of links shown, under Foxy's advanced options?

I needed to access the initial webpage URL of a site I was exploring. I had hundreds of URLs from this site and could not find the link in my history. I naturally used the "back" button, but realized it only went back 10 links. Is there a way to increase the number of links shown, under Foxy's advanced options?

Vybrané riešenie

You should be able to go back 50 pages. You can modify the value of this pref on the about:config page:

  • browser.sessionhistory.max_entries = 50 (default)

You can open the about:config page via the location/address bar. You can accept the warning and click "I'll be careful" to continue.

Note that session restore only stores a limited amount of page.


  • resource:///defaults/pref/firefox.js
// number of back button session history entries to restore (-1 = all of them)
pref("browser.sessionstore.max_serialize_back", 10);
// number of forward button session history entries to restore (-1 = all of them)
pref("browser.sessionstore.max_serialize_forward", -1);
Čítať túto odpoveď v kontexte 👍 1

Všetky odpovede (3)

more options

Vybrané riešenie

You should be able to go back 50 pages. You can modify the value of this pref on the about:config page:

  • browser.sessionhistory.max_entries = 50 (default)

You can open the about:config page via the location/address bar. You can accept the warning and click "I'll be careful" to continue.

Note that session restore only stores a limited amount of page.


  • resource:///defaults/pref/firefox.js
// number of back button session history entries to restore (-1 = all of them)
pref("browser.sessionstore.max_serialize_back", 10);
// number of forward button session history entries to restore (-1 = all of them)
pref("browser.sessionstore.max_serialize_forward", -1);
more options

Two footnotes:

(1) The Library dialog (Ctrl+Shift+h) will show all the URLs you visited on the site -- you can enter part of the site name/address in the search box at the upper right to filter it down. However, the URLs are sorted by the most recent visit so if you circled back through the first page you visited, it will not be the last/oldest on the list any more.

(2) If you close Firefox and then restore your previous session, some of your back/forward button history is discarded.

more options

Note that I addressed (2) in the last part of my reply about browser.sessionstore.max_serialize prefs. and that only the back history is affected unless you modify these prefs.