Last active
June 18, 2017 21:41
-
-
Save Dreyer/9df37c4adbc07853b66ebe619fdd7270 to your computer and use it in GitHub Desktop.
Re-enable copy-paste for stupid sites that block it.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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