Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

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

  • 3 cavab
  • 2 have this problem
  • 9 views
  • Last reply by 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?

Chosen solution

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);
Read this answer in context 👍 1

All Replies (3)

more options

Seçilmiş Həll

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.