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 nikhil-thakkar/f3aca9fec1a7869a1ca0ff56e3548ccb 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