jonasbits / Spotify: Take back User Select

// ==UserScript==
// @name         Spotify: Take back User Select
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  try to take over the world!
// @author       You
// @match        https://play.spotify.com/track/*
// @grant        none
// ==/UserScript==
/* jshint -W097 */
'use strict';

// Tested in Chrome

document.body.style["-webkit-user-select"]="all";
document.body.style["-khtml-user-select"]="all";
document.body.style["-moz-user-select"]="all";
document.body.style["user-select"]="all";