본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

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.