What is an online clipboard?
An online clipboard is a service that carries what you copy on one device to the clipboard of another, over the internet. You copy a link on your laptop and paste it on your phone. It replaces the workaround most people use instead — emailing or messaging things to themselves — and it needs no cable and no shared Wi-Fi network.
How an online clipboard works
Your operating system already has a clipboard: a small piece of memory holding the last thing you copied, which any app on that machine can read when you paste. It is local by design and stops at the edge of the device.
An online clipboard adds a second step. Something watches that local clipboard, and when it changes, sends the contents to the other devices in your session, where it is placed on their local clipboard. From then on it behaves like anything else you copied — Ctrl+V works normally.
The devices have to be told they belong together. There are two ways services do this, and it is the main thing that distinguishes them:
- By account — you sign in on both devices, and the service pairs them because both are you. Windows clipboard sync and Apple Universal Clipboard work this way.
- By shared key — you type the same short code on both devices, and the service pairs them because both know it. No identity is involved, so no sign-up is needed.
What it is not
Three different tools get called the same thing, and picking the wrong one is the usual reason people conclude that online clipboards do not work.
| Tool | What it is for | Devices | Persists? |
|---|---|---|---|
| Online clipboard | Moving what you copy between devices | Two or more | No — it is a live session |
| Clipboard manager | Searchable history of everything you copied | One | Yes, locally |
| Pastebin | Publishing text at a URL you can share | Anyone with the link | Yes, on a server |
| File transfer | Sending files, usually to someone else | Two | Varies |
A clipboard manager — Ditto, CopyQ, Maccy, or Windows' Win+V history — keeps a searchable list of everything you have copied on one machine. It is about time, not distance. Some managers add sync as a feature, which is where the confusion starts.
A pastebin — Pastebin, GitHub Gist, privatebin — puts text at a URL so you can send that URL to somebody. It is a publishing tool: the content is stored, it has an address, and pasting it on the other end means opening a page and selecting the text by hand.
A file-transfer tool — AirDrop, LocalSend, Snapdrop, PairDrop — moves files between devices. Most can send a text snippet too, but it arrives as a message rather than on the clipboard, which is a small difference that matters a lot when you do it forty times a day.
When an online clipboard is the right tool
- Moving a link, address, verification code or command between your own laptop and phone.
- Copying between devices from different makers — a Windows PC and an Android phone, or a Mac and a Windows machine — where the built-in options do not talk to each other.
- Working on a machine where you cannot install software: a work laptop, a shared computer, a Chromebook.
- Devices that are on different networks — one on Wi-Fi, one on mobile data.
- Getting text off a virtual machine or remote desktop session where clipboard passthrough is disabled.
It is the wrong tool for large files, for anything you need to keep, and for content you want a permanent link to. Those are jobs for a transfer tool, a notes app and a pastebin respectively.
Is an online clipboard safe?
It depends entirely on whether the service can read what you copy, and that is the one question worth asking of any of them. The clipboard is where passwords, one-time codes and private links pass through, so a service that receives them in plain text is holding the most sensitive stream on your machine.
Three things to check:
- Is it end-to-end encrypted? The text should be encrypted on your device before it is sent, so the server routes something it cannot read.
- What is stored, and for how long? "Nothing is written to disk" is a stronger claim than "we delete it later", and easier to verify.
- Can you check? Open-source code and a self-hosting option mean the answer is not just a promise on a marketing page.
A worked example
RealtimeClipboard is an online clipboard of the shared-key kind, and it is a reasonable illustration of the whole category because it makes each of those choices explicitly.
Both devices open the same page and type the same short key. The key
never leaves the browser: what reaches the relay is
SHA-256(key), used only as a room address, plus text
already encrypted with AES-GCM. The relay forwards ciphertext between
two connections and stores nothing on disk. Files bypass it and go
directly between the browsers over WebRTC. It is
MIT-licensed,
and you can run the relay yourself.
The limits are as much a part of the illustration: the short key is a bearer credential, files are capped at 5 MB, and automatic capture of the OS clipboard needs a Chromium-based browser — Firefox and Safari can send and receive pasted text but cannot read the clipboard themselves. No browser can read the clipboard while its tab is in the background; that is a browser security rule that applies to every web-based tool in this category.
Common questions
What is an online clipboard in simple terms?
It is a service that makes copy and paste work between two devices instead of within one. You copy something on your laptop and it becomes available to paste on your phone, over the internet, without a cable or a shared Wi-Fi network.
What is the difference between an online clipboard and a clipboard manager?
A clipboard manager keeps a searchable history of everything you have copied on a single machine — it solves "what did I copy ten minutes ago". An online clipboard moves what you copy to a different device — it solves "I copied this here and need it there". One is about time, the other about distance.
Is an online clipboard the same as a pastebin?
No. A pastebin stores your text at a public URL so you can share that link with someone else, and the text stays there until it expires. An online clipboard has no URL holding your content and nothing to share — it puts the text on another device's clipboard and keeps nothing afterwards.
Are online clipboards safe to use for passwords?
Only if the service is end-to-end encrypted, and even then a password manager with its own sync is the better tool. If a clipboard service does not encrypt on your device before sending, assume its operator can read anything you copy — including passwords and one-time codes that passed through your clipboard while it was running.
Do online clipboards work between Android and Windows?
Yes, and that is one of the main reasons to use one. The built-in options do not cross ecosystems: Windows clipboard sync only works between Windows PCs on the same Microsoft account, and Apple's Universal Clipboard only between Apple devices. A browser-based clipboard treats every platform the same because it only needs a browser.
Do online clipboards need an account?
Not necessarily. Services that pair devices with a shared key need no account at all, because the key is what identifies the session rather than a signed-in identity. Services built around an account — such as the clipboard sync built into Windows and macOS — do require one, and only work within their own ecosystem. See online clipboard with no login.