B站稍后再看跳转普通视频页的简单实现

自动从稍后再看列表跳转到实际视频页面

// ==UserScript==
// @name         B站稍后再看跳转普通视频页的简单实现
// @namespace    http://tampermonkey.net/
// @version      1.0
// @license MIT
// @description  自动从稍后再看列表跳转到实际视频页面
// @match        *://www.bilibili.com/list/watchlater*
// @icon         https://www.bilibili.com/favicon.ico?v=1
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';

    // 解析URL参数
    const urlParams = new URLSearchParams(window.location.search);
    const bvid = urlParams.get('bvid');

    // 如果存在bvid参数且当前路径符合要求
    if (bvid && window.location.pathname.startsWith('/list/watchlater')) {
        // 构建新URL并立即跳转
        const newUrl = `https://www.bilibili.com/video/${bvid}/`;
        window.location.replace(newUrl); // 使用replace避免历史记录残留
    }
})();

QingJ © 2025

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