Remove UserSelect

If you ever want to select and copy from a site but they don't let you, I got you.
Copy the one line of JavaScript below into a bookmark in your browser.
If you want to use it just click the bookmark, it's that easy!

javascript:(function(){Array.prototype.forEach.call(document.querySelectorAll("*[style]"),function(e){e.style.userSelect='';});let e=document.getElementsByTagName("*");for(let id=0;id<e.length;++id){e[id].oncontextmenu=null;}document.oncontextmenu=null;window.oncontextmenu=null;})();

This is the above but more readable.

javascript:(
    function(){
        Array.prototype.forEach.call(
            document.querySelectorAll("*[style]"),function(element){
                element.style.userSelect = '';
            }
        );
        let e = document.getElementsByTagName("*");
        for (let id = 0; id < e.length; ++id) {
            e[id].oncontextmenu=null;
        }
        document.oncontextmenu = null;
        window.oncontextmenu = null;
    })
();