Clipboard Inspector
Paste or drag & drop anything to instantly reveal all MIME types, data formats, and content stored in your clipboard. The essential debugging tool for web developers.
How It Works
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.
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.
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). 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.