您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
修正收藏夹内 Bilibili 账户已注销的视频链接,修改为 https://www.bilibili.com/list/$UID
// ==UserScript== // @name Bilibili 收藏夹账号已注销修正 // @name:zh-CN Bilibili 收藏夹账号已注销修正 // @namespace http://tampermonkey.net/ // @version 1.0.1 // @license MIT // @description 修正收藏夹内 Bilibili 账户已注销的视频链接,修改为 https://www.bilibili.com/list/$UID // @description:zh-CN 修正收藏夹内 Bilibili 账户已注销的视频链接,修改为 https://www.bilibili.com/list/$UID // @author Kaesinol // @match https://space.bilibili.com/* // @grant none // @run-at document-end // ==/UserScript== (function() { 'use strict'; function processLinks() { document.querySelectorAll('div.bili-video-card__subtitle a').forEach(a => { const textParts = a.textContent.split(" "); if (textParts.includes("账号已注销")) { const match = a.href.match(/\/(\d+)\??/); if (match) { a.href = `https://www.bilibili.com/list/${match[1]}`; a.style.textDecoration = "line-through"; } } }); } const observer = new MutationObserver(processLinks); observer.observe(document.body, { childList: true, subtree: true }); processLinks(); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址