為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

Tabs Recovery

  • 8 回覆
  • 1 有這個問題
  • 14 次檢視
  • 最近回覆由 Osvetnik

more options

Hi, this isn't quite a tab recovery as the session hasn't ended, it just won't display the window. But it's in private browsing so I don't want to close the window since I understand that nothing will be saved from that session. But is there somewhere I can access a list of tabs while the session still exists? I'd hate to lose them all.

Hi, this isn't quite a tab recovery as the session hasn't ended, it just won't display the window. But it's in private browsing so I don't want to close the window since I understand that nothing will be saved from that session. But is there somewhere I can access a list of tabs while the session still exists? I'd hate to lose them all.

被選擇的解決方法

You can try to use the Browser Console to save the current session data.

Note that you need to enable the command prompt.


/* Session data - Get/Set State */
ssj = SessionStore.getBrowserState(); // get Current Session State
ssj = prompt("Copy Current Session State\n\nPaste New Session State: press ESC or click Cancel to abort", ssj||"");
if(ssj){SessionStore.setBrowserState(ssj)}

You can paste the content in a file and possibly check this file via this tool.

從原來的回覆中察看解決方案 👍 1

所有回覆 (8)

more options

選擇的解決方法

You can try to use the Browser Console to save the current session data.

Note that you need to enable the command prompt.


/* Session data - Get/Set State */
ssj = SessionStore.getBrowserState(); // get Current Session State
ssj = prompt("Copy Current Session State\n\nPaste New Session State: press ESC or click Cancel to abort", ssj||"");
if(ssj){SessionStore.setBrowserState(ssj)}

You can paste the content in a file and possibly check this file via this tool.

more options

Alright I will try that, but I also have a "normal" session open. For some reason that works fine but the private window won't display. If I access the browser console will it show both sessions? How would I distinguish between them?

more options

Maybe because I have a lot of tabs open, my Firefox has trouble showing the session in the Prompt dialog. I adapted cor-el's script to save to disk:

https://gist.github.com/jscher2000/d7c77f90bde6f37f526faa56c6a2b19e

more options

If you use the Browser Console then you get tabs from all open windows, regular and private browsing (isPrivate key), unlike sessionstore.jsonlz4 that only saves the tabs in regular windows. I don't know how the scrounger tool deals with PB mode tabs.

See also:

more options

cor-el said

I don't know how the scrounger tool deals with PB mode tabs.

If private windows are found in the JSON data, the window is listed with (Private) next to the number. But as you point out, that would only be in data pulled through the Browser Console and not in Firefox's standard files.

more options

Alright I got a little distracted but I finally got around to trying this, and it's telling me when I enter the command prompt that sessionstore is not defined.

I tried jscher2000's command prompt and it gave me a different error, that said:

Uncaught SyntaxError: expected expression, got '*'

more options

Make sure you are testing in the Browser Console popup window (Ctrl+Shift+j) and not in the tab-specific Web Console.

For my script, did you paste starting from line 1 ? You actually can omit lines 1-11 and start with line 12. (But don't start with any other lines.)

more options

Okay yeah that's what it was, I was using the web console. I just got it to work I'm very relieved, thanks for all the help you two you saved a lot of stuff I was working on.