Skip to content

Instantly share code, notes, and snippets.

@solancer
Created February 19, 2018 20:07
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 solancer/198b6f19bd7d338062d6c6a8e55abeb8 to your computer and use it in GitHub Desktop.
Save solancer/198b6f19bd7d338062d6c6a8e55abeb8 to your computer and use it in GitHub Desktop.
Javascript console code 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