Fragen zum Thema werden angezeigt:

lost data shockingly after deleting newly created profile

""What happened:"" Yesterday I updated Firefox to 151 and noticed a "Profile" feature for the first time. I created a new profile, then saw a small icon with the Firefox… (Lesen Sie mehr)

""What happened:"" Yesterday I updated Firefox to 151 and noticed a "Profile" feature for the first time. I created a new profile, then saw a small icon with the Firefox icon that bothered me and realized it belonged to the new profile. I thought that the newly created profile is safe to delete and has to data within, so I deleted it. After that, Firefox deleted all old data and created another new profile and I lost old bookmarks, passwords, and browsing history.

Note: no warning was showed before deleting the profile.

What I tried: 1. Checked about:profiles profiles: no old data. 2. Opened the profiles folder in C:\Users\[my account]\AppData\Roaming\Mozilla\Firefox\Profiles: no old data found. I noticed one of the default profiles contains a places.sqlite file that’s about 2 years old: no old data, only default bookmarks are there. 3. Used Recuva to try to recover files — I recovered key4.db, login.db, and places.sqlite-shm but nothing useful so far. Environment/details: • Firefox version: 151 • OS: Windows 11 • No Firefox account Questions: • Is there any way to restore the old profile data from the files I recovered (key4.db, logins.json/login.db, places.sqlite-shm)? • Any other recovery steps I should try? • how to prevent the same thing in the future? Thanks

Offen

can't open not by me closed tabs

Hi, i can see all my previous tabs in history but can't reopen window? I didn't close those tabs, one time i opened mozilla and they were all closed. Help me, thank you … (Lesen Sie mehr)

Hi,

i can see all my previous tabs in history but can't reopen window?

I didn't close those tabs, one time i opened mozilla and they were all closed.

Help me, thank you

Offen

History not saved despite configuration

I had a power outage occur recently and when i booted my computer again I found that somehow my Firefox account was disconnected. All of my bookmarks and history gone, bu… (Lesen Sie mehr)

I had a power outage occur recently and when i booted my computer again I found that somehow my Firefox account was disconnected. All of my bookmarks and history gone, but things like accounts and site preferences were kept. The problem is that firefox is not saving my history and bookmarks cannot be made. I have checked common causes for this problems, like not activating sync and turning off "remember history", settings which were set up correctly.

Offen

A way to convert your .jsonlz4 to .json valid for 2026?

Hola, he necesitado una forma de convertir un archivo .jsonlz4 a .json de forma online o que ponga en riesgo lo menos posible mi PC (evitando descargar y ejecutar, largos… (Lesen Sie mehr)

Hola, he necesitado una forma de convertir un archivo .jsonlz4 a .json de forma online o que ponga en riesgo lo menos posible mi PC (evitando descargar y ejecutar, largos código que requieren de herramientas de terceros como Python, etc.), y he encontrado un sitio web que no me ha servido porque mi archivo .jsonlz4 era lo suficientemente grande como para dejar la página web congelada teniendo que esperar una larga cantidad de tiempo), este post es simplemente para ayudar a la comunidad que busca una solución a esto en 2026 (hay una versión de 2015 en el foro que utiliza la inferfaz IFilePicker que ya no funciona en las versiones actuales de Firefox):

  1. Escribe "about:config" en la barra de direcciones de Firefox.
  2. Busca "devtools.chrome.enabled".
  3. Asegúrate de que esté en "true" (doble clic para cambiar si es necesario).
  4. Código que debes pegar en la consola de Firefox (Shift+Ctrl+J):

--- // (Bourdait, 2026) Script de Firefox para convertir archivos .jsonlz4 a .json (descomprimido) desde consola de FF (async () => {

 // 1. Verificar configuración necesaria
 if (!Services.prefs.getBoolPref("devtools.chrome.enabled", false)) {

console.warn("ADVERTENCIA: 'devtools.chrome.enabled' es falso. El selector de archivos podría fallar."); console.warn("Ve a about:config y pon devtools.chrome.enabled en true si tienes problemas.");

 }
 let filePath = null;
 // 2. Selector de Archivos (Intento XPCOM con fallback)
 try {

// Intento utilizar el filepicker nativo (aún funciona en consola privilegiada en muchas versiones) const fp = Cc["@mozilla.org/filepicker;1"]?.createInstance(Ci.nsIFilePicker); if (fp) { // Nota: En versiones muy recientes (FireFox 125+), a veces requiere window.browsingContext try { fp.init(window.browsingContext || window, "Seleccionar archivo jsonlz4", Ci.nsIFilePicker.modeOpen); } catch (e) { fp.init(window, "Seleccionar archivo jsonlz4", Ci.nsIFilePicker.modeOpen); } fp.appendFilter("Archivos jsonlz4", "*.jsonlz4"); fp.appendFilter("Todos los archivos", "*.*"); // Esperar la selección const result = await new Promise(resolve => fp.open(resolve)); if (result === Ci.nsIFilePicker.returnOK && fp.file) { filePath = fp.file.path; } }

 } catch (e) {

console.error("El selector XPCOM falló:", e.message); // Fallback manual filePath = prompt("El selector automático no funcionó. Pega la RUTA COMPLETA del archivo .jsonlz4:", ""); if (!filePath || !filePath.endsWith(".jsonlz4")) return;

 }
 if (!filePath) return;
 const outputFile = filePath.replace(".jsonlz4", "_convertido.json");
 try {

console.log("Leyendo y descomprimiendo:", filePath); // 3. LECTURA Y DESCOMPRESIÓN CORRECTA // IOUtils es global, NO se importa. // El truco está en la opción { decompress: true } const content = await IOUtils.readUTF8(filePath, { decompress: true }); console.log("Guardando archivo JSON:", outputFile); // 4. ESCRITURA DEL ARCHIVO await IOUtils.writeUTF8(outputFile, content); console.log("Archivo guardado en:", outputFile); alert("Conversión completa.\nArchivo guardado en:\n" + outputFile); // Opcional: Abrir el resultado en una nueva pestaña const fileObj = Services.io.newFile(Services.io.newFile(outputFile)); // Corrección de ruta // Método más seguro para abrir archivo local en Firefox moderno: const url = Services.io.newFileURI(Services.io.newFile(outputFile)).spec; window.open(url, "_blank");

 } catch (err) {

console.error("Error crítico:", err); alert("Error al procesar el archivo:\n" + err.message + "\n\nAsegúrate de que la ruta es correcta y el archivo no está corrupto.");

 }

})(); ---

NOTA: Aunque el script muestre algún error comprueba el archivo, a veces aparece algún error pero ha convertido el archivo perfectamente.

La única intención de compartir el script es ayudar a otros y hacer crecer la comunidad.

Un saludo.

Offen