Don't like the youtube autoplay suggestion? This script can create a queue with videos you want to play after your current video has finished!
< 腳本Youtube Play Next Queue的回應
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!
登入以回復
土豆服务器,请按需使用
镜像地址随时可能被墙,建议加群获取最新地址
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
Request Update:
Change
to
getVideoData
might be assigned after the DOM element is inserted. At that time, error will occur.