In the latest Firefox version(116.0.2 (64-bit)) the button “List all tabs” won’t show any tabs unless I close like half of them, then it works again if I open new random tabs. Currently 246 open tabs.

Any other way to fix this? I don’t really wanna close those tabs.

The way I know this is that I tested in a sandbox with the same profile to try to find the problem.

EDIT 14/Aug/2023: So I just found out the issue was some tabs that had a " --" at the end of the title probably caused by some addon made this issue happen. It probably isn’t really a - but I don’t know what character is that.

All you have to do is just copy the url, open a new tab, paste the url and go. Close the previous tab with " --" at the end.
Just make sure you are not opening a new tab with CTRL+(clicking the + icon) from the “broken” tab with the " --".

Example.

Hope this helps someone else.

  • jscher2000@fedia.io
    link
    fedilink
    arrow-up
    1
    ·
    11 months ago

    Another option would be to run a little snippet of script in the Web Console (Ctrl+Shift+K, or on Mac, it’s Command+Alt+K) to chop off the last character of the title:

    document.title = document.title.slice(0, document.title.length-1);

    If there is still something strange on there, press the up arrow and submit it again (or if there’s a Run button, click Run again).