PDF metadata is the document information dictionary a PDF carries with it — fields like title, author, subject, keywords, creator, producer, and creation or modification dates — and editing it locally in your browser takes about a minute with no upload and no install.
The reason this question keeps coming up on Reddit is that most recommended tools force a tradeoff. Desktop apps like ExifTool, qpdf, or a full Acrobat subscription are powerful but require installation, a learning curve, or a paid plan. Free web editors usually require uploading the PDF to a remote server, which is a non-starter for documents that contain drafts, internal reports, legal files, or anything subject to an NDA. A third option — copying a Python or Node script from a comment thread — works, but it asks the reader to install a runtime, a package manager, and sometimes a PDF library before they touch a single field.
The simplest answer is a single-page browser tool that reads the document information dictionary, lets you change the entries you want, and saves a renamed copy without sending the file anywhere. The PDF Metadata Editor does exactly that: it loads the file with the pdf-lib JavaScript library in your browser, displays what it finds, and writes your changes to a new local PDF. The original stays on your disk untouched, and a separate copy is downloaded when you save. If the no-upload angle matters most to you, the practical walkthrough in Edit PDF Metadata Free: A No-Upload Browser Method covers the same idea in more depth.

Why Most PDF Metadata Tools Get Pushed Aside on Reddit
Three concerns show up over and over in comment threads about PDF metadata.
Install friction. The most-cited options — ExifTool, qpdf, pdftk, the mutool clean utility — are command-line tools. They are fast and reliable, but they require the user to install a binary, learn flags, and trust a terminal session with a sensitive document. For someone who only needs to change one title, that is too much setup.
Upload risk. Many web editors that rank well on Google quietly upload the file to a backend for processing. For a public brochure that is fine. For a draft contract, an internal memo, or a medical form, it is not. Reddit threads consistently warn that "free online" is shorthand for "your file left your machine."
Cost. Adobe Acrobat Pro can edit metadata, but it costs a subscription fee per user, and a one-off metadata fix does not justify a yearly bill. Free alternatives that bundle metadata editing into a larger PDF suite often hide the feature behind a sign-up, a watermark, or a daily quota.
The browser-based approach sidesteps all three. Nothing installs, nothing uploads, and there is no paywall. The trade-off is scope: the editor changes document information only, it does not rewrite page content, and it does not promise to repair malformed PDFs or handle every vendor-specific extension.
The Fields You Can Actually Edit in a PDF
The PDF specification defines a Document Information Dictionary with a small set of standard text and date entries. Most readers care about the same handful. Here is what the editor exposes, what each field means, and how viewers typically use it.
| Field | Type | What it does |
|---|---|---|
| Title | Text | Displayed in many viewer title bars and search results, sometimes overriding the filename. |
| Author | Text | The byline recorded inside the document. Used by archives, document management systems, and citation tools. |
| Subject | Text | A short description of the topic, often shown alongside the title in viewer Details panels. |
| Keywords | Text (comma-separated) | Search terms added to improve findability in internal archives and library systems. |
| Creator | Text | The application that produced the original content, for example a word processor or design tool. |
| Producer | Text | The software that generated the PDF, often the PDF library or printer driver. |
| CreationDate | Date | When the PDF itself was first produced. Distinct from any date printed on the page. |
| ModDate | Date | When the PDF was last modified. |
A few caveats belong with this list. PDF metadata is not the visible page content — changing the title does not redraw a cover page, and changing the author does not rewrite a byline printed on the page. It is also not a signature; replacing the Author field does not prove who wrote the document. And not every viewer displays every field. Some prioritize title over filename, others ignore producer, and keyword support is patchy outside of library and archive tools.
Editing PDF Metadata in Your Browser
The workflow is three steps and takes roughly as long as filling out a short form.
- Pick the PDF. Click the file selector and choose a PDF from your device. The tool loads it with the pdf-lib JavaScript library and reads the document information dictionary. The detected title, author, subject, keywords, creator, producer, and dates appear in editable fields.
- Edit what you need. Change any text entry. Leave a field empty and the downloaded copy receives an empty value for that field. For keywords, enter them as a comma-separated list and they are preserved in the document information. For dates, use the YYYY-MM-DD format; the editor validates the actual calendar date, including leap years, before it saves.
- Save and verify. Download the new PDF copy. The original file on your disk is not overwritten, so you can compare the two. Open the downloaded copy in the viewer or system that matters to you and confirm the entries there.
For recurring work, pick a predictable title and creator convention so people can recognize your documents in browser tabs, downloads, and internal search results. A simple rule of thumb: use the same Creator string across a set of related reports, and put the most searchable keywords in the Keywords field rather than the Title.
Limits Worth Knowing Before You Save
Three limits change whether the editor can complete the task or whether you need a different tool entirely.
Document information only. The editor writes standard Document Information Dictionary entries. It does not redraw page artwork, change page text, flatten form fields, rotate a scan, remove annotations or attachments, add page numbers, watermark pages, merge files, or redact confidential content. If any of those are on your checklist, use the corresponding tool for that job and treat metadata as a separate step.
Digital signatures. Saving a new copy invalidates any existing digital signature on the saved copy, even though the visible page artwork is unchanged. Keep the original signed file and use a signature-aware workflow whenever signature validity matters. The editor is not a replacement for that.
Date handling. Standard PDF date removal is not a dependable public operation in a local browser workflow, so a blank date is treated as leave unchanged rather than as a request to clear the entry. If a recipient relies on document timestamps, review date changes carefully before sharing the file.
Protected or damaged files. Password-protected and unreadable PDFs are rejected rather than bypassed. The editor does not promise to repair malformed metadata or normalize every vendor-specific extension. If the file fails to load, that is a signal to open it in Acrobat or another full viewer first.
How Different Viewers Show the Same Fields
Two viewers can show the same PDF with very different metadata panels. Adobe Reader and Acrobat show a Properties dialog with all eight fields. Many browser-based PDF viewers show only the title, or fall back to the filename if the title is empty. Search and archive systems, including Spotlight, Windows Search, and most document management tools, read Author, Title, and Keywords but rarely surface Creator or Producer.
This matters because the field you think you changed might not be the field the recipient's viewer reads. Open the downloaded copy in the viewer or system that matters to you and confirm the entries there before you share it.
Checking Your Changes Before You Share
A short verification routine catches most mistakes.
- Open the downloaded PDF in the viewer the recipient will actually use — Acrobat, Preview, Chrome, or your company's document system.
- Open the Properties or Details panel and confirm each field you changed.
- Search the document inside the viewer using one of the new keywords to confirm the index picked them up.
- If the file carries a digital signature, confirm the original signed copy is still on disk and that you are sharing the new metadata-only version, not the signed one.
- Compare the original and the saved copy by file size and by opening both side by side; the page artwork should be identical.
For most readers, the whole flow — pick a file, change three or four entries, save, verify — is faster than installing a command-line tool and reading its manual. That is why this style of editor has become a recurring recommendation in PDF-focused threads: it removes the install and the upload, and it leaves the document information dictionary the only thing that actually changes.