Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

longer list in the back button

more options

Hi There,

If i have been through 100s of pages in 1 tab and I want to go back, say, 80 pages, I have to right click the back button and select the page at the bottom (the 14th page) and this will take me back 14 pages, then again, right click, on the back button and select the bottom page and again it takes me back another 14 pages, and again..... etc etc until I get to the page I want. My question is; How can I get a longer list of pages when I right click the back button, may be list of 30 pages, so when I click the bottom page this would take me back 30 pages? (see pic, I edited the pic to show you what I want to see, the long list) Many Thanks

Tony.

Hi There, If i have been through 100s of pages in 1 tab and I want to go back, say, 80 pages, I have to right click the back button and select the page at the bottom (the 14th page) and this will take me back 14 pages, then again, right click, on the back button and select the bottom page and again it takes me back another 14 pages, and again..... etc etc until I get to the page I want. My question is; How can I get a longer list of pages when I right click the back button, may be list of 30 pages, so when I click the bottom page this would take me back 30 pages? (see pic, I edited the pic to show you what I want to see, the long list) Many Thanks Tony.
已附加屏幕截图

所有回复 (2)

more options

The maximum is hard coded as MAX_HISTORY_MENU_ITEMS.

more options

As a kind of blunt workaround, you could create a bookmarklet to jump back an arbitrary (or user-specified) number of pages in history. For example,

javascript:void(history.go(-20));

will trigger Firefox to jump to the 20th page back. Unfortunately, this is not a "best efforts" command, i.e., if there are only 18 previous pages, nothing will happen, Firefox won't jump back to the first page.

There is a bit of data available using

history.length

but that includes both back and forward history so it wouldn't work to adjust the length of a backward jump.

Anyway, it's a thought. Maybe there's an add-on for this.