One click on any web page that contains a Spotify playlist or album URL → instantly opens Splaylist with that playlist pre-loaded. No copy-pasting URLs.
Cmd + Shift + B (Mac) / Ctrl + Shift + B (Windows)Cmd + Shift + Bsplaylist.app with the playlist URL already loaded — the tracks will start showing in the table.It's a small piece of JavaScript that scans the current page's HTML for the first Spotify playlist or album URL, then opens splaylist.app/?url=<that URL> in a new tab. Splaylist then auto-fills the URL and starts loading.
(function() {
var html = document.documentElement.outerHTML;
var match = html.match(
/https:\/\/open\.spotify\.com\/playlist\/[a-zA-Z0-9]+/
);
if (!match) {
match = html.match(
/https:\/\/open\.spotify\.com\/album\/[a-zA-Z0-9]+/
);
}
if (!match) {
alert('No Spotify playlist or album URL found on this page.');
return;
}
window.open(
'https://splaylist.app/?url=' + encodeURIComponent(match[0]),
'_blank'
);
})();
No data is sent anywhere except to splaylist.app, and only the Spotify URL itself is transmitted (in the URL of a new tab). The bookmarklet does not run unless you click it.
The bookmarklet only runs when you click it, only on the page you click it on, and only sends the Spotify URL to splaylist.app — nothing else. See the full Privacy Policy for how Splaylist handles data.