document.addEventListener('contextmenu', event => event.preventDefault());
I am already using it on this particular page, so if you try to right-click it will not work. A way to
work around this is to disable JavaScript on your browser and refresh.
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Opera and Firefox */
You can highlight everything in this page except for this paragraph: STUFF YOU CAN'T HIGHLIGHT
It can be used on most HTML tags (and can be set as ID too).