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.

📋 All MIME Types🆓 100% Free🔒 No Data Sent⚡ Instant Results
Clipboard Inspector
⌨️
Keyboard Paste
Press Ctrl+V / ⌘+V anywhere on the page
🖱️
Drag & Drop
Drop files or text here

How It Works

1

Copy Something

Copy text, images, files, or any content from any app on your computer.

2

Paste or Drop

Press Ctrl+V / ⌘+V anywhere on this page, or drag and drop files into the drop zone.

3

Inspect Data

See all MIME types, data formats, and the actual content — instantly, right in your browser.

4

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

What is a Clipboard Inspector?
A clipboard inspector is a developer tool that reveals the full contents of the system clipboard when a paste or drag-and-drop event occurs. When you copy something — text, an image, a file, or rich content — the operating system stores it in multiple formats simultaneously. This tool shows you all of those formats (called MIME types) and their raw content, which is invaluable for debugging paste handling in web applications.
Why are there multiple MIME types when I paste text?
When you copy text from a web page or document, the clipboard typically contains several representations: 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.
Is my clipboard data safe? Does it get sent anywhere?
Your clipboard data is completely safe. This tool runs entirely in your browser using JavaScript. No clipboard content is ever transmitted to any server. You can verify this by checking the browser's Network tab in DevTools while using the tool. All processing happens locally on your device.
What is the Clipboard API and how is it different from paste events?
There are two ways to read clipboard data in browsers. The traditional approach uses 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.
How do I use this to debug my web application?
Copy the same content your users would paste into your app, then paste it here to see exactly what MIME types and data your 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.
What MIME types are commonly found in clipboard data?
Common clipboard MIME types include: 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).
Does this work on mobile devices?
Mobile browsers have limited clipboard API support due to security restrictions. The tool works best on desktop browsers (Chrome, Firefox, Safari, Edge). On mobile, you may need to use the Clipboard API button after granting clipboard permission, as the paste event may not fire the same way. iOS Safari and Android Chrome have partial support.

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.