Skip to content

Instantly share code, notes, and snippets.

@h43z
Created July 8, 2025 20:24
Show Gist options
  • Save h43z/67a7f05b3987113b2862a06567b79904 to your computer and use it in GitHub Desktop.
Save h43z/67a7f05b3987113b2862a06567b79904 to your computer and use it in GitHub Desktop.
/// tagClipboardWrites.js
// monkeypatch clipboard.writeText to include a prefix
(function() {
const originalWriteText = navigator.clipboard.writeText.bind(navigator.clipboard);
navigator.clipboard.writeText = async function(text) {
return originalWriteText(`@remove@${text}`);
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment