搜尋 Mozilla 技術支援網站

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

Learn More

How to get a list of all the open tabs in a Firefox window?

more options

Hello everyone,

I've been using Firefox for quite some time and I always keep a bunch of windows open throughout a few workspaces on my laptop. However, this takes up a lot of resources and looks very messy. So, I've been thinking of writing a script/extension to simply store all the open links in a window to a named list that I can, then, come back to when I need and reopen. That way, I could possibly have different lists, separated by topic and stored in a single place.

I'm sorry if there is an obvious solution for this, I saw a couple of similar questions have been asked before, but none that I could use as reference.

Thank you for your time, have a nice week!

Hello everyone, I've been using Firefox for quite some time and I always keep a bunch of windows open throughout a few workspaces on my laptop. However, this takes up a lot of resources and looks very messy. So, I've been thinking of writing a script/extension to simply store all the open links in a window to a named list that I can, then, come back to when I need and reopen. That way, I could possibly have different lists, separated by topic and stored in a single place. I'm sorry if there is an obvious solution for this, I saw a couple of similar questions have been asked before, but none that I could use as reference. Thank you for your time, have a nice week!

被選擇的解決方法

You can search the Add-ons website for a suitable session manager extension.

You will normally find these files in the sessionstore-backups folder:

  • previous.jsonlz4 (cleanBackup: copy of sessionstore.jsonlz4 from previous session that was loaded successfully)
  • recovery.jsonlz4 (latest version of sessionstore.jsonlz4 written during runtime)
  • recovery.baklz4 (previous version of sessionstore.jsonlz4 written during runtime)
  • upgrade.jsonlz4-<build_id> (backup created during an upgrade of Firefox)

You can look at this tool to inspect a compressed jsonlz4 sessionstore file. This tool works locally, no uploading done.

See also my reply here:

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

所有回覆 (2)

more options

選擇的解決方法

You can search the Add-ons website for a suitable session manager extension.

You will normally find these files in the sessionstore-backups folder:

  • previous.jsonlz4 (cleanBackup: copy of sessionstore.jsonlz4 from previous session that was loaded successfully)
  • recovery.jsonlz4 (latest version of sessionstore.jsonlz4 written during runtime)
  • recovery.baklz4 (previous version of sessionstore.jsonlz4 written during runtime)
  • upgrade.jsonlz4-<build_id> (backup created during an upgrade of Firefox)

You can look at this tool to inspect a compressed jsonlz4 sessionstore file. This tool works locally, no uploading done.

See also my reply here:

more options

Thank you for the detailed response!