Created
September 14, 2025 08:07
-
-
Save UnixSage/30b00d2bcbd62eade336b01c1cdb502d to your computer and use it in GitHub Desktop.
Browser Bookmarklet that enables Copy / Paste on those irritating sites that disable it
This file contains hidden or 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
| javascript:(function(){ | |
| allowCopyAndPaste = function(e){ | |
| e.stopImmediatePropagation(); | |
| return true; | |
| }; | |
| document.addEventListener('copy', allowCopyAndPaste, true); | |
| document.addEventListener('paste', allowCopyAndPaste, true); | |
| document.addEventListener('onpaste', allowCopyAndPaste, true); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment