Greasy Fork is available in English.

b站动态详情页面直接跳转旧版

在动态列表直接点击动态内容会进入新版动态页面,使用该脚本自动跳转旧版动态详情页面.

// ==UserScript==
// @name         b站动态详情页面直接跳转旧版
// @namespace    http://tampermonkey.net/
// @version      1.0.0
// @description  在动态列表直接点击动态内容会进入新版动态页面,使用该脚本自动跳转旧版动态详情页面.
// @author       aotmd
// @match        https://www.bilibili.com/opus/*
// @noframes
// @run-at document-start
// @license MIT
// @grant        none
// ==/UserScript==

(function () {
    let NO=window.location.pathname.match(/\d+/)?.[0];
    if(NO!=null){
        window.location.href="https://t.bilibili.com/"+window.location.pathname.match(/\d+/)?.[0];
    }
})();