Bilibili-Tab内跳转

Bilibili tab内跳转

// ==UserScript==
// @name         Bilibili-Tab内跳转
// @license MIT
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Bilibili tab内跳转
// @author       You
// @match        https://*.bilibili.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    window.addEventListener('click', (event) => {
        event.preventDefault();
        var targetLink = event.target.closest('a');

        // Check if the clicked element is an anchor tag
        if (targetLink) {
            // Open the target '_self'
            window.open(targetLink.href, '_self')

        }
    })
})();