YouTuBu click text link open new tab

try to take over the world!

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         YouTuBu click text link open new tab
// @namespace    https://bbs.tampermonkey.net.cn/
// @version      0.1.3
// @description  try to take over the world!
// @author       xiaofeiwu
// @match        https://www.youtube.com/
// @run-at       document-end
// @grant        GM_addStyle
// @license MIT
// ==/UserScript==

(function () {
    'use strict';

    setTimeout(() => {
        // document.body.addEventListener('click', (event) => {
        //     event.stopPropagation();
        //     event.preventDefault(); 
        // })
        const textHrefList = document.querySelectorAll('#video-title-link')
        for (let i = 0; i < textHrefList.length; i++) {
            textHrefList[i].style.backgroundColor = 'skyblue'
        }
        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)
})();

// GM_addStyle(`
//   #video-title-link {
//       backgroundColor: 'skyBlue'
//   }
// `)