Youtube - Search While Watching Video

Search YouTube without interrupting the video, by loading the search results in the related video bar

< Youtube - Search While Watching Video 피드백으로 돌아가기

질문/댓글

Request Update:

Change


        function isPlayerAvailable() {
            script.ytplayer = getVideoPlayer();
            return script.ytplayer !== null && script.ytplayer.getVideoData().video_id;
        }

to


        function isPlayerAvailable() {
            script.ytplayer = getVideoPlayer();
            return script.ytplayer && typeof script.ytplayer.getVideoData === 'function' && script.ytplayer.getVideoData().video_id;
        }

getVideoData might be assigned after the DOM element is inserted. At that time, error will occur.

Cptmathix작성자
§
게시: 2024-03-02

Thank you for reporting, updated!

답글 게시

답글을 게시하려면 로그인하세요.

长期地址
遇到问题?请前往 GitHub 提 Issues。