Clipboard Inspector
Free Online Clipboard Viewer & MIME Type Checker
Inspect your clipboard online: paste or drag & drop anything to instantly reveal all MIME types and data formats. Need a clipboard cleaner? Wipe your clipboard contents with one click. All inspections are saved to your clipboard history — review, compare, and revisit past pastes anytime. Free, private, runs entirely in your browser — no installation, no signup.
How to Inspect Clipboard Data
Copy Something
Copy text, images, files, or any content from any app on your computer.
Paste or Drop
Press Ctrl+V / ⌘+V anywhere on this page, or drag and drop files into the drop zone.
Inspect Data
See all MIME types, data formats, and the actual content — instantly, right in your browser.
Debug & Learn
Understand exactly what your app receives when users paste content. Copy individual values for testing.
Key Features
MIME Type Detection
Reveals every MIME type available in your clipboard — text/plain, text/html, image/png, and many more application-specific formats.
File Inspection
When you copy files, see their name, size, type, and last modified date. Image files are previewed directly in the browser.
Drag & Drop
Test drag-and-drop events by dropping files or content onto the inspector. See exactly what dataTransfer contains.
Clipboard API
Use the modern async Clipboard API to read clipboard data programmatically, the same way your web app would.
100% Private
All processing happens in your browser. No clipboard data is ever sent to a server. Your data stays yours.
Instant Results
Zero loading time. Paste or drop and see results immediately. No signup, no installation, no configuration needed.
Clipboard Cleaner
Clear your clipboard contents with one click. Useful when you've copied sensitive data like passwords or API keys and want to wipe them from memory.
Clipboard History
Every paste and drop is automatically saved to a local history log. Browse, revisit, and compare past clipboard inspections — stored privately in your browser, never on a server.
Image & Video Preview
Image files open in a full-screen lightbox with pinch-zoom, drag-to-pan, and fit-to-screen. Video files play inline with native controls — no external viewer needed.
Install as App (PWA)
Install Clipboard Inspector as a desktop or mobile app via your browser's install prompt. Works offline and launches instantly — no app store, no download.
Frequently Asked Questions
MIME types) and their raw content, which is invaluable for debugging paste handling in web applications. text/plain (plain text without formatting), text/html (the full HTML with styles and structure), and sometimes application-specific formats. Web browsers and apps provide multiple formats so that the receiving application can choose the most appropriate one — a plain text editor uses text/plain, while a rich text editor might use text/html. paste event listeners which fire when the user presses Ctrl+V/⌘+V. The modern Clipboard API (navigator.clipboard.read()) allows programmatic clipboard reading at any time, but requires explicit user permission. Both approaches are supported by this inspector. The Clipboard API button uses the async API, while pasting uses the event-based approach. paste event handler will receive. This helps you understand why certain content looks different after pasting, debug rich text editor paste behavior, implement correct file upload handling, and ensure your app handles all the clipboard formats users might paste. text/plain (plain text), text/html (HTML with formatting), text/uri-list (URLs), image/png (PNG images), image/jpeg (JPEG images), application/json (JSON data), and custom types from specific applications like application/x-vnd.google-docs-document-slice-clip+wrapped (Google Docs). text/plain (plain text) and text/html (formatted HTML). Web applications read the most appropriate format for their needs. paste event handler will receive via event.clipboardData. This is invaluable for debugging rich text editors, file upload handlers, and any feature that processes pasted content. text/plain and strips all formatting, while a rich text editor reads text/html and preserves bold, colors, and structure. Clipboard Inspector shows you all available formats so you can understand exactly what each application will receive when a user pastes. localStorage. You can browse, revisit, and compare past inspections at any time. History is stored entirely on your device — nothing is sent to a server — and persists until you manually clear it. Common Use Cases
Rich Text Editors
Debug why pasted content from Word, Google Docs, or web pages looks wrong in your editor by seeing the exact HTML being pasted.
Image Paste Handling
Verify that screenshot paste (e.g., from Print Screen) produces image/png data your upload handler expects.
URL & Link Handling
Inspect whether copied links contain just the URL (text/plain) or rich link HTML (text/html) with anchor tags.
Spreadsheet Data
See how Excel or Google Sheets data appears when copied — typically as text/html table HTML and text/plain TSV.
Sensitive Data Cleanup
Copied a password, API key, or personal data and want to clear it? Use the Clear Clipboard button to instantly wipe your clipboard memory and reduce exposure risk.
Review Past Inspections
Clipboard history lets you go back and compare multiple pastes from a debugging session — useful when testing how different sources format the same content.