solorice/config/spicetify/Extracted/Themed/xpui/blank.html
Kristofers Solo a42ded1119 Use dotter
2024-08-28 09:02:07 +03:00

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>