📂
Runs in your browserNo upload · runs locally

Extract ZIP

See what is inside a ZIP and download single files or all of them, straight from your browser, with no upload and no extra software.

Loading tool…
Short answer

Extract a ZIP file by dropping it into Extract ZIP. The archive is read in your browser, every entry is listed with its size, and you can download one file or all of them together. Nothing is uploaded, each file is checked against its CRC-32, and no software is installed.

What is a ZIP file?

What is a ZIP file?

ZIP is the archive format from PKWARE that every operating system has opened since the 1990s. A .zip holds files and folders as entries, each with a name, a timestamp, a compression method and a CRC-32 checksum, followed by a central directory that indexes them all. Most entries are compressed with DEFLATE; already-compressed files such as photos are often just stored. The ZIP64 extension lifts the original 4 GB and 65,535-entry limits.

What is an encrypted ZIP?

A password-protected ZIP marks each protected entry with an encryption flag and scrambles its data with either the old ZipCrypto scheme or AES (the WinZip extension). The file names usually stay visible; the contents do not. Browsers have no built-in way to decrypt these, and the legacy ZipCrypto scheme is weak enough that it should not be relied on. Extract ZIP lists encrypted entries but cannot unpack them.

Why extract a ZIP in the browser?

  • Look inside before you commit. See the file list, folder structure and sizes first, then pull out only the one document you need instead of unpacking a hundred files onto your desktop.
  • Works where you cannot install anything. A locked-down work laptop, a school Chromebook or a phone often has no proper archive tool. A browser tab is enough here.
  • The archive is never uploaded. Reading, inflating and checksum verification all run locally. A ZIP of client files or personal records never leaves your computer.
  • Safe by default. Every extracted file is verified against its CRC-32, and paths containing ../ are renamed so a hostile archive cannot write outside its own folder.

How to extract a ZIP file, step by step

  1. Open Extract ZIP and drop the archive Drag one .zip file onto the drop zone or click to browse. The central directory is read immediately and the contents appear as a list.
  2. Review the contents Folders and files are shown with their sizes. Entries that are encrypted, ZIP64 or use an unusual compression method are marked and will be skipped.
  3. Download a single file Click Download next to any entry. It is inflated in your browser, checked against its CRC-32 and saved.
  4. Or download everything Click Download all. One file downloads as itself; several are re-packed into a new ZIP with the folder structure intact, so you get a single clean download.

Frequently asked questions

Can I open a password-protected ZIP?

No. Encrypted entries are listed by name but cannot be extracted, because the browser has no way to decrypt ZipCrypto or AES-protected data. Open the archive with the password in your operating system's built-in unzip tool instead.

Is the ZIP uploaded to a server?

No. The archive is read from your disk into the browser tab, entries are inflated with the browser's own DecompressionStream, and downloads are created locally. Nothing is transmitted.

What size of archive can it handle?

Standard ZIP archives, which by definition are under 4 GB with fewer than 65,535 entries; ZIP64 and multi-part archives are refused. In practice the archive is held in the browser's memory, so very large files depend on how much free RAM your tab has.

Why does it say an entry cannot be extracted?

The entry is encrypted, uses ZIP64 fields, or was compressed with a method other than store or DEFLATE (for example BZIP2 or LZMA). The tool supports the two methods that cover almost every archive in circulation and skips the rest rather than producing broken files.

Does it work on Safari and older browsers?

Inflating DEFLATE entries needs DecompressionStream, which is in current Chrome, Edge, Firefox and Safari 16.4 or later. On an older browser, stored entries still extract and compressed ones are marked as unavailable.

Looking for the long version? The guides cover each of these jobs in depth.