Skip to content

Instantly share code, notes, and snippets.

@UnixSage
Created September 14, 2025 08:07
Show Gist options
  • Select an option

  • Save UnixSage/30b00d2bcbd62eade336b01c1cdb502d to your computer and use it in GitHub Desktop.

Select an option

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
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