Skip to content

Instantly share code, notes, and snippets.

@Dreyer
Last active June 18, 2017 21:41
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 Dreyer/9df37c4adbc07853b66ebe619fdd7270 to your computer and use it in GitHub Desktop.
Save Dreyer/9df37c4adbc07853b66ebe619fdd7270 to your computer and use it in GitHub Desktop.
Re-enable copy-paste for stupid sites that block it.
// Paste the snippet in Chrome console and hit enter.
// Source: https://chrome.google.com/webstore/detail/dont-fuck-with-paste/nkgllhigpcljnhoakjkgaieabnkmgdkb
document.addEventListener('paste', (e) => { e.stopImmediatePropagation(); return true; }, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment