F12 누르고 아래에 있는 코드 붙여넣기하셈



setInterval(() => {
    if (document.querySelectorAll('.ad-showing').length > 0) {
        const video = document.querySelector('video');
        if (video) {
            video.currentTime = video.duration;
        }
    }
}, 500);