댓글 남기기
window.top.addEventListener("message", function(msg) {
const widget = document.getElementById('ScreenerWidget-zppr0lk');
if (!widget) return;
const styles = msg.data?.styles;
if (styles) {
Object.keys(styles).forEach(key => widget.style.setProperty(key, styles[key]))
}
});