Created
April 13, 2025 16:17
-
-
Save smtchahal/f8827ab88d493d5feef0a383c4800d18 to your computer and use it in GitHub Desktop.
Bookmarklet to enable right-click & copy-paste
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:Array.from(document.getElementsByTagName('*')).forEach(elm => { elm.addEventListener('contextmenu', evt => { evt.stopPropagation(); return true; }, true); elm.addEventListener('paste', evt => { evt.stopPropagation(); return true; }, true); }); |
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
Array.from(document.getElementsByTagName('*')).forEach(elm => { | |
elm.addEventListener('contextmenu', evt => { | |
evt.stopPropagation(); | |
return true; | |
}, true); | |
elm.addEventListener('paste', evt => { | |
evt.stopPropagation(); | |
return true; | |
}, true); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment