Spotify open in app

This userscript redirects open.spotify.com links to the desktop app

< 脚本 Spotify open in app 的反馈

评价:好评 - 脚本运行良好

§
发布于:2020-10-30

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()

发布留言

登录以发布留言。