Spotify open in app

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

< Feedback on Spotify open in app

Review: Good - script works

§
Posted: 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();
})();

Post reply

Sign in to post a reply.