Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Learn More

All tabs lost after firefox crash.

  • 3 respostas
  • 3 têm este problema
  • 1 visualização
  • Última resposta por cor-el

more options

Hey guys. So, as I've said, I lost all my tabs. I have the Session manager plugin, but it's not showing up in the plugin toolbar nor in the Customize folder. I've copied previous.js and a backup from the Session folder to my desktop right after it happened. I tried copying and changing previous.js to sessionstore.js, but upon opening Firefox the tabs were not there and the Restore option was still greyed out. I checked previous.js in wordpad and the links are there, but there's about a hundred of them and I'd like to avoid copying all of them if I can. Is there any solution to this?

Hey guys. So, as I've said, I lost all my tabs. I have the Session manager plugin, but it's not showing up in the plugin toolbar nor in the Customize folder. I've copied previous.js and a backup from the Session folder to my desktop right after it happened. I tried copying and changing previous.js to sessionstore.js, but upon opening Firefox the tabs were not there and the Restore option was still greyed out. I checked previous.js in wordpad and the links are there, but there's about a hundred of them and I'd like to avoid copying all of them if I can. Is there any solution to this?

Todas as respostas (3)

more options

hi, you could try to copy/paste the content of your previous.js file into https://firefox-session-restore.herokuapp.com/

more options

philipp said

hi, you could try to copy/paste the content of your previous.js file into https://firefox-session-restore.herokuapp.com/

That does work, thanks! But as I've said, there's a LOT of them (because they were grouped), so if there's any quicker solution that'd be great!

Modificado por parantan a

more options

You can also open the sessionstore file in a Firefox tab. Open the Web Console (Firefox/Tools > Web Developer) and paste this code in the command line.

eval("ss = "+document.body.innerHTML.replace("<pre>","").replace("</pre>",""));
sd='';
for (var i = 0; i < ss.windows[0].tabs.length; i++) {
 var ent = ss.windows[0].tabs[i].entries;
 var last = ent[ent.length-1];
 sd+="["+(i+1)+"]:"+"<a href="+last.url+">"+last.url+"</a><br />";
}
document.body.innerHTML=sd;