Skip to content

Instantly share code, notes, and snippets.

@Esteban-Rocha
Created November 10, 2020 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Esteban-Rocha/9db748f4172e2cfe43c748219d697b0b to your computer and use it in GitHub Desktop.
Save Esteban-Rocha/9db748f4172e2cfe43c748219d697b0b to your computer and use it in GitHub Desktop.
Unlock paste on websites
var allowPaste = function(e){
e.stopImmediatePropagation();
return true;
};
document.addEventListener('paste', allowPaste, true);
// Run the code in the devtools console.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment