Greasy Fork

Greasy Fork is available in English.

Bilibili 账号已注销修正

修正Bilibili 账户已注销的主页链接,修改为 https://www.bilibili.com/list/$UID

当前为 2025-08-18 提交的版本,查看 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Bilibili 账号已注销修正
// @name:zh-CN   Bilibili 账号已注销修正
// @namespace    http://tampermonkey.net/
// @version      1.1.4
// @license      MIT
// @description  修正Bilibili 账户已注销的主页链接,修改为 https://www.bilibili.com/list/$UID
// @description:zh-CN  修正Bilibili 账户已注销的主页链接,修改为 https://www.bilibili.com/list/$UID
// @author       Kaesinol
// @match        https://*.bilibili.com/*
// @grant        none
// @run-at       document-end
// ==/UserScript==

// https://github.com/the1812/Bilibili-Evolved/discussions/4804#discussioncomment-10513931
(function () {
    'use strict';
    function processLinks() {
        document.querySelectorAll('div.bili-video-card__subtitle a').forEach(a => {
            handleElement(a)
        });
    }
    function handleElement(a, type = "normal") {
        let text = null;
        if (location.href.includes('space.bilibili.com')) {
            text = a.textContent.split(" ");
        } else {
            text = a.text;
        }
        if (text.includes("账号已注销")) {
            const match = a.href.match(/\/(\d+)\??/);
            if (match && type == "normal") {
                a.href = `https://www.bilibili.com/list/${match[1]}`;
                a.style.textDecoration = "line-through";
            } else {
                a.addEventListener('click', function (event) {
                    event.preventDefault(); // 阻止默认跳转行为
                    window.open(`https://www.bilibili.com/list/${match[1]}`, '_blank');
                });
            }
        }
    }
    function processCommentRenderers(elements) {
        elements.forEach(renderer => {
            handleElement(renderer.shadowRoot.querySelector('bili-comment-renderer').shadowRoot.querySelector('bili-comment-user-info').shadowRoot.querySelector('#user-name a'))
        });
    }

    function processComments() {
        const startElement = document.querySelector('bili-comments');
        if (startElement && startElement.shadowRoot) {
            const allElements = startElement.shadowRoot.querySelectorAll('bili-comment-thread-renderer');
            processCommentRenderers(allElements);
        }
    }

    const observer = new MutationObserver(() => {
        processLinks();
        processComments();
    });
    observer.observe(document.body, { childList: true, subtree: true });
    setInterval(processComments, 3000);
    document.addEventListener('DOMContentLoaded', () => {
         handleElement(document.body.querySelector('.up-detail-top a'), 'abnormal'); // 用户名a[href]似乎还会被B站修改一次
});
})();