您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
在动态列表直接点击动态内容会进入新版动态页面,使用该脚本自动跳转旧版动态详情页面.
当前为
// ==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]; } })();