Greasy Fork

Greasy Fork is available in English.

BiliBili Redirector

哔哩哔哩从搜索引擎进入会出现包含 /s/ 路径的特殊视频播放页,本脚本替换为正常播放页

当前为 2021-12-20 提交的版本,查看 最新版本

// ==UserScript==
// @name                BiliBili Redirector
// @name:en-US          BiliBili Redirector
// @name:zh-CN          哔哩哔哩重定向
// @description  哔哩哔哩从搜索引擎进入会出现包含 /s/ 路径的特殊视频播放页,本脚本替换为正常播放页
// @namespace           bilibili-redirector
// @version             2021.12.20
// @author              Akatsuki Rui
// @license             MIT License
// @run-at              document-start
// @match               https://www.bilibili.com/s/*
// ==/UserScript==

"use strict";

 window.location.replace( location.href.replace(location.pathname, location.pathname.slice(2) ));