Támogatás keresése

Kerülje el a támogatási csalásokat. Sosem kérjük arra, hogy hívjon fel egy telefonszámot vagy osszon meg személyes információkat. Jelentse a gyanús tevékenységeket a „Visszaélés bejelentése” lehetőséggel.

További tudnivalók

A témacsoportot lezárták és archiválták. Tegyen fel új kérdést, ha segítségre van szüksége.

All tabs lost after firefox crash.

  • 3 válasz
  • 3 embernek van ilyen problémája
  • 1 megtekintés
  • Utolsó üzenet ettől: 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?

Összes válasz (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!

Módosította: parantan,

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;