Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Hey, How many tabs in firefox can you save?

more options

Hey, How many tabs in firefox can you save? I swear I got 54 or 55 tabs but doesn't seem to be saving more of them, right clicking bookmark all tabs and then checking. I did recently do system restore that have anything to do with locking it down?

Hey, How many tabs in firefox can you save? I swear I got 54 or 55 tabs but doesn't seem to be saving more of them, right clicking bookmark all tabs and then checking. I did recently do system restore that have anything to do with locking it down?

All Replies (3)

more options

I figured it out! however Firefox no longer saves tabs of the same page duplicates that is, how do you enable duplicate saving of tabs?

more options

I don't think that you can save multiple tabs that have the same URL via bookmark all tabs. You can consider to make the URL unique and add an anchor (#xxx) if you know that you have multiple tabs. There might be an extension that supports this feature, so check the Add-ons site.

You can paste this code in the command line of the Browser Console to get a list of tabs.

var wm = Cc["@mozilla.org/appshell/window-mediator;1"].getService(Ci.nsIWindowMediator);
var gB = wm.getMostRecentWindow("navigator:browser").gBrowser;
var url = gB.selectedBrowser.contentDocument.location.href;

var l = gB.mPanelContainer.childNodes.length,i,t=[];
for(var i=0;i<l;i++){t.push(gB.getBrowserAtIndex(i).contentDocument.location.href);}

var dataURI = "data:text/html;charset=utf-8,<html><body>"+t.join("<br>\n")+"</body></html>";
var tab = gB.addTab(dataURI);
gB.selectedTab = tab;
more options

ok cheers m8, just to let everyone know, before a certain update you could bookmark duplicate tabs in the same window, now you cannot it just doesn't bookmark all of them. I used to bookmark same pages a while back before some update.

If you google.com 2 tabs that gets saved because the url address is slightly different.

Modified by Mangekyo Sharringan