A DOCX metadata viewer reveals the hidden properties stored inside a Word document — who created it, who last edited it, when, and how many times it was saved. That information is invaluable for document forensics, due diligence, and checking that a file has been scrubbed before you share it. This tool reads everything locally in your browser, so sensitive documents never get uploaded.
How it works
A modern Word .docx file is a ZIP archive (Office Open XML) containing several XML parts. The metadata lives in two of them:
docProps/core.xml— Dublin Core fields:dc:creator,cp:lastModifiedBy,dcterms:created,dcterms:modified,dc:title,cp:revision,cp:keywords.docProps/app.xml— Office application fields:Application,Company,Words,Pages,TotalTime(editing minutes).
The tool reads the ZIP central directory at the end of the file to find those entries, inflates each one with the browser’s native DecompressionStream("deflate-raw") (ZIP uses raw deflate), then parses the XML and pulls out each tag’s text.
Tips and notes
- The
TotalTimefield is the cumulative minutes the document was open for editing — sometimes more revealing than the revision count. - To remove metadata before sharing, use Word’s Inspect Document → Remove All feature, then re-check it here.
- A creation date later than the modification date can indicate the file was copied or its clock was changed — a classic forensic red flag.
- Only the standard property parts are read; custom XML and tracked-changes data are not parsed.