javascript:(function(){
allowCopyAndPaste = function(e){
e.stopImmediatePropagation();
return true;
};
document.addEventListener('copy', allowCopyAndPaste, true);
document.addEventListener('paste', allowCopyAndPaste, true);
document.addEventListener('onpaste', allowCopyAndPaste, true);
})();
-
-
Save topskipper72/de7239c9ee6042696a13927f5b822914 to your computer and use it in GitHub Desktop.
Enable copy and paste in a webpage from the browser console
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment