Spotify open in app

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

< 脚本Spotify open in app的反馈

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

§
发表于:2020-07-31

Updated script to include support for highlight in the URL.


(function() {
  'use strict';
  var url = new URL(document.URL);
  var uri;

  if (url.searchParams.get("highlight") === null) {
    data = url.pathname.match(/(track|playlist|album|artist|show|episode)\/([^\&\#\/\?]+)/i);
    uri = 'spotify:'+data[1]+':'+data[2];
  } else {
    uri = url.searchParams.get("highlight")
  }

  console.log("Redirecting to " + uri);
  window.location.replace(uri);
  window.close();
})();

发表回复

登录以发表回复。