I am trying to make it as difficult for users to copy content from my web page. I have looked at existing threads e.g. how to restrict user to copy web content
In this and a number of other threads people have reiterated that once content is displayed in the browser a person determined to copy can usually find a way around it and can take pictures or even make notes. While I appreciate that there may not be a completely foolproof solution for this, all I am trying to achieve is to make this as difficult as possible for people to copy content from my website.
With that background I wanted to explore a suggestion that is there in many of the other threads that I have looked at. It suggests use of the user-select property to disable selection of the content from the page e.g. Prevent selection in HTML or How to disable selection of text on a web page
However, with this approach it is possible for someone to disable the CSS property from the Dev tools window. Once the property is disabled it is possible for users to select the content from the web page. So my specific question is "Is there any way in which I can prevent users from changing the user-select css property from chrome Dev tools"?
Thanks