// ==UserScript== // @license MIT // @name Bilibili SEO页面 重定向 // @description Bilibili SEO页面 重定向到普通页面 // @run-at document-start // @include https://www.bilibili.com/s/video/* // @namespace https://greasyfork.org/users/710514 // @version 0.0.1.20211129062431 // @downloadURL none // ==/UserScript== (function(){ window.location.replace(location.href.replace('/s','')); })();