dotfiles/.config/spicetify/Extracted/Raw/xpui/blank.html

25 lines
445 B
HTML
Raw Normal View History

2024-07-11 00:01:49 +05:30
<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>