25 lines
445 B
HTML
Executable File
25 lines
445 B
HTML
Executable File
<html>
|
|
<script>
|
|
window.addEventListener(
|
|
'message',
|
|
function (e) {
|
|
if (!e.origin.endsWith && e.origin !== 'xpui.app.spotify.com') {
|
|
return;
|
|
}
|
|
|
|
if (!e.origin.endsWith('.spotify.com')) {
|
|
return;
|
|
}
|
|
|
|
if (e.data.type !== 'html') {
|
|
return;
|
|
}
|
|
|
|
document.write(e.data.html);
|
|
document.close();
|
|
},
|
|
false,
|
|
);
|
|
</script>
|
|
</html>
|