How to get a list of all the open tabs in a Firefox window?
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!
Solução escolhida
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:
- /questions/1417201 Increase Sessionstore Files or Backup times?
Todas as respostas (2)
Solução escolhida
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:
- /questions/1417201 Increase Sessionstore Files or Backup times?
Thank you for the detailed response!