This userscript redirects open.spotify.com links to the desktop app
< Opiniones de Spotify open in app
A little refactor if you'd like :)
const [ , type, id ] = document.URL.match( /[\/\&](track|playlist|album|artist|show|episode)\/([^\&\#\/\?]+)/i ) window.location.replace( `spotify:${ type }:${ id }` ) // window.close()
Inicia sesión para responder.
A little refactor if you'd like :)