Skip to content

Instantly share code, notes, and snippets.

@emaV
Created July 23, 2021 07:31
Show Gist options
  • Save emaV/8f21e0b5d7970507ee36753fe688d6ef to your computer and use it in GitHub Desktop.
Save emaV/8f21e0b5d7970507ee36753fe688d6ef to your computer and use it in GitHub Desktop.
Enable paste in Chrome
// Enable Paste in Chrome (ctrl-v)
// [How to Enable Pasting Text on Sites That Block It](https://www.howtogeek.com/251807/how-to-enable-pasting-text-on-sites-that-block-it/)
var allowPaste = function(e){
e.stopImmediatePropagation();
return true;
};
document.addEventListener('paste', allowPaste, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment