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.
11 Answer
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