Opens YouTube links in new tabs without simulating Ctrl+Click, keeping the original page unchanged. Also pauses video on opening.
< 腳本YouTube Force Link Open in New Tab (Updated)的回應
删除这个
// Pause video on current page load
function pauseVideo() {
let video = document.querySelector('video');
if (video) {
video.pause();
} else {
// If video is not immediately found, try again after a short delay
setTimeout(pauseVideo, 100);
}
}
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
很好用,可以设置成打开视频自动播放吗?