try to take over the world!
// ==UserScript==
// @name B站 /s/ 视频号 url 替换
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.bilibili.com/s/video/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var reg = /.bilibili\.com\/s\/video/;
var str = window.location.href;
if (reg.test(window.location.href)) {
str = str.replace('/s/video/', '/video/');
window.location.href = str;
}
})();