Search YouTube without interrupting the video, by loading the search results in the related video bar
< Feedback op 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.
getVideoData
Thank you for reporting, updated!
Log in om antwoord te geven.
Request Update:
Change
to
getVideoData
might be assigned after the DOM element is inserted. At that time, error will occur.