YouTuBu click text link open new tab

点击youtubu文字区域跳转到新标签页打开

目前为 2023-04-22 提交的版本。查看 最新版本

// ==UserScript==
// @name         YouTuBu click text link open new tab
// @namespace    https://bbs.tampermonkey.net.cn/
// @version      0.1.0
// @description  点击youtubu文字区域跳转到新标签页打开
// @author       xiaofeiwu
// @match        https://www.youtube.com/
// @run-at       document-end
// @license MIT
// ==/UserScript==

(function () {
    'use strict';

    setTimeout(() => {
        const links = document.querySelectorAll('a[href*="/watch?v="]');
        for (let i = 0; i < links.length; i++) {
            links[i].addEventListener('click', (event) => {
                event.stopPropagation(); // 阻止事件冒泡
                event.preventDefault(); // 阻止链接的跳转行为
                window.open(links[i].href, '_blank'); // 在新标签页中打开链接
            });
        }
    }, 3000)
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址