自动宽屏模式|自定义布局|智能连播...更多功能等你体验, 打造属于自己的B站~
< 脚本MR哔哩哔哩助手-自动宽屏模式|自定义布局|智能连播|打造属于自己的B站的反馈
智能分P不能用的话,把下面的函数替换一下就好了.
function smartNextPlayVideoCheck() { setTimeout(smartNextPlayVideoCheck, 500); //存在播放设置 且 加载完毕 且 使用设置 if (!document.getElementsByClassName('bpx-player-ctrl-setting-handoff-content')[0] || !loadReady || !GM_getValue('MRMenuSmartNextPlay') == 1)return; if (document.getElementsByClassName('video-pod video-pod')[0] && document.getElementsByClassName('switch-btn')[0].className == 'switch-btn') { document.getElementsByClassName('bpx-player-ctrl-setting-handoff-content')[0].children[0].children[0].children[0].children[0].click(); console.log('[' + notificationScriptName + '-' + notificationNotification + '] ' + '智能连播 - 检测到当前为多集视频已开启自动连播'); } else if (!(document.getElementsByClassName('video-pod video-pod')[0]) && document.getElementsByClassName('switch-btn')[0].className == 'switch-btn on') { document.getElementsByClassName('bpx-player-ctrl-setting-handoff-content')[0].children[0].children[0].children[0].children[1].click(); console.log('[' + notificationScriptName + '-' + notificationNotification + '] ' + '智能连播 - 检测到当前为单集视频已关闭自动连播'); } }
大佬我想彻底关闭自动切集智能连播改成默认的播完暂停该怎么修改?我手动改成播完暂停重启后还是会被更改成自动切集
感谢给其他人提供的帮助,最近实在没什么时间和精力维护脚本😭
登录以发表回复。
智能分P不能用的话,把下面的函数替换一下就好了.