A .tar.gz is two formats stacked: a tar bundle of files that has then been gzip-compressed as a whole, so opening one means undoing the gzip layer before the tar can be read. This extractor does both steps with your browser's own DecompressionStream. Open .tar.gz, .tgz, .tar and .gz archives right in your browser — list the files, download them, or repackage the whole thing as a ZIP. Nothing is uploaded and there's no sign-up.
Drop a .tar.gz / .tgz / .tar / .gz file hereor click to choose — decompressed on your device, never uploaded
How to extract a .tar.gz file
Drag your archive onto the box above or click it to pick a .tar.gz, .tgz, .tar or .gz file. The tool undoes the gzip compression using your browser's built-in decompression, reads the tar bundle, and lists every file with its size. Download files one at a time, grab them all, or choose Download as .zip to convert the archive into a standard ZIP.
There is no decoder to download here at all. The gzip layer is undone by DecompressionStream, a decompression API built into your browser, and the tar bundle is unpacked by the page's own JavaScript; the optional ZIP repack uses the bundled JSZip library. Everything runs locally, so your files never leave your device. Test it if you like: load this page, turn off your Wi-Fi or switch to airplane mode, and extraction still works, because no request is made when you drop a file in.
No file size limit is set by this tool, because there is nothing to upload and no server quota to hit. The gzip layer is decompressed into a single buffer in memory and the file list points into that same buffer, so the practical ceiling is the free RAM on your device rather than a published maximum: allow about the uncompressed size of the archive, and roughly that much again if you choose Download as .zip. Archives in the hundreds of megabytes are fine in a desktop browser; an older phone runs out of memory sooner.
Drop the .tar.gz (or .tgz, .tar, .gz) file onto the box above or click to choose it. The tool decompresses the gzip layer and reads the tar contents in your browser, then lists every file so you can download them one by one, all together, or as a single ZIP. Nothing is uploaded.
What is the difference between .tar, .gz and .tar.gz?
A .tar file bundles many files into one without compressing them. A .gz file is a single file compressed with gzip. A .tar.gz (also written .tgz) is a tar bundle that has then been gzip-compressed, which is the most common format for Linux and open-source downloads. This tool handles all of them.
Can I convert a tar.gz to a ZIP?
Yes, the LK Forge TAR.GZ Extractor converts to ZIP as well as extracting. After the archive is opened, choose Download as .zip to repackage all of its files into a single standard ZIP archive that opens natively on Windows and macOS. The conversion happens entirely in your browser.
Are my files uploaded anywhere?
No, the TAR.GZ Extractor uploads nothing. Decompression and extraction run entirely on your device using your browser's built-in DecompressionStream. Your archive and its contents never leave your computer, so it is safe for private files.
Is there a file size limit?
There is no limit set by this tool, because there is nothing to upload and no server quota. The gzip layer is decompressed into a single buffer in memory and the file list points into that same buffer, so the practical ceiling is the free RAM on your device: allow about the uncompressed size of the archive, and roughly that much again if you choose Download as .zip. Archives in the hundreds of megabytes are fine in a desktop browser; an older phone runs out of memory sooner.
Does the TAR.GZ extractor work offline?
Yes, the TAR.GZ Extractor works offline after the page has loaded. The gzip decompression uses DecompressionStream, which is built into your browser, and the tar parsing is done by the script delivered with this page, so no request of any kind is made when you drop a file in. Load the page, turn off your Wi-Fi or switch to airplane mode, then open an archive: it still works, which is the simplest proof that nothing is uploaded.