Skip to content

Instantly share code, notes, and snippets.

@fnnzzz
Created April 7, 2021 14:39
Show Gist options
  • Save fnnzzz/e8d9e828307f7150e202302f8f13616f to your computer and use it in GitHub Desktop.
Save fnnzzz/e8d9e828307f7150e202302f8f13616f to your computer and use it in GitHub Desktop.
clipboard cv estaff
document.addEventListener('copy', async function(e) {
try {
const clipboardItems = await navigator.clipboard.read();
for (const clipboardItem of clipboardItems) {
for (const type of clipboardItem.types) {
const blob = await clipboardItem.getType(type);
console.log(await blob.text())
}
}
} catch (err) {
console.error(err.name, err.message);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment