Reader mode on Chrome allow users to copy text on my site. How to disable it?

My site has disallowed copy and paste using some CSS and JS tricks. I know it is hackable but it still effectivly increases the cost of stealing content from my site. But some browsers like Chrome and Edge are trying to Reader Mode which make copying content from my site much easier now. Is there any way I can disable it? Thanks a lot.

1

1 Answer

ReferLink

document.addEventListener('copy', function(e) { e.clipboardData.setData('text/plain', 'Please do not copy text'); e.clipboardData.setData('text/html', '<b>Please do not copy text</b>'); e.preventDefault(); 

});

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like