Extract TAR.GZ
Open a .tar.gz, .tgz or .tar archive and download what is inside — in your browser, with nothing uploaded.
Extract ZIP & RAR Archives
Select a .zip or .rar file to instantly extract its contents inside your browser. No files are uploaded to any server.
Two formats stacked on top of each other
The double extension is not a mistake. tar bundles files together and compresses nothing: it writes a small header in front of each file and pads everything to a 512-byte boundary, a layout designed for writing to magnetic tape and never really changed since. gzip then compresses that whole bundle as a single stream.
That order has one consequence you notice immediately. Because gzip compresses the bundle rather than each file in it, there is no index: nothing in a .tar.gz says what is inside until the whole thing has been decompressed. A ZIP keeps a directory at the end of the file, which is why a ZIP tool lists contents instantly and this one has to think first.
Why that also makes the safety limits harder
A ZIP announces each file's uncompressed size up front, so an archive claiming to expand to fifty gigabytes can be refused before a single byte is allocated. A .tar.gz makes no such claim, so the usual approach — decompress, then check — has already lost by the time it finds out.
Here the compressed data is fed to the decompressor in slices and the output measured between them, so extraction stops the moment it passes the cap. A crafted kilobyte that expands to gigabytes gets a clear message instead of an unresponsive tab.
What a browser cannot give back
Regular files come out intact, with their folder structure shown. Symbolic links, device nodes and Unix permission bits do not, because no web page can create them — they are dropped rather than turned into misleading empty files. For restoring a server backup faithfully, use tar on the machine it belongs to; for getting the documents out of one, this is enough.