Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

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!

Ausgewählte Lösung

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:

Diese Antwort im Kontext lesen 👍 1

Alle Antworten (2)

more options

Ausgewählte Lösung

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!